DocsMCP (Claude)

MCP Integration

Use FindIP patent search directly from Claude Desktop via the Model Context Protocol (MCP).

What is MCP?

MCP (Model Context Protocol) is a standard protocol that allows AI models like Claude to securely access external data and systems. With the FindIP MCP server, you can search and analyze patents in real-time during your Claude conversations.

Available MCP Tools

ToolDescriptionAPI Endpoint
search_patentsSemantic patent searchPOST /search
get_documentFull document detailGET /documents/{id}
get_figuresPatent figure imagesGET /figures/{id}
analyze_trendsPatent trend analysisPOST /trends
get_statsPatent statisticsPOST /stats

Setup Guide

1

Get your API Key

You need a valid API key to run the MCP server. Create one from the dashboard.

2

Install the MCP Server

Open your terminal and verify the package works:

npx @findip/mcp-server
3

Configure Claude Desktop

Open your Claude Desktop config file and add the following:

Config file location:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "patent-search": {
      "command": "npx",
      "args": ["-y", "@findip/mcp-server"],
      "env": {
        "FINDIP_API_KEY": "psk_live_your_api_key"
      }
    }
  }
}

Replace psk_live_your_api_key with your actual API key.

Verify the Connection

Restart Claude Desktop. The MCP integration icon should become active. Try asking Claude:

"Search for recent patents about solid-state batteries filed by Samsung."

Environment Variables

VariableRequiredDefaultDescription
FINDIP_API_KEYYesYour FindIP API key
FINDIP_API_URLNohttps://api.findip.aiAPI server URL (for custom deployments)