Help us improve
Share bugs, ideas, or general feedback.
From patent-search-mcp
Provides patent search capabilities by connecting to a patent API. Runs locally as a Node.js subprocess. Requires PATENT_CONSUMER_KEY and PATENT_CONSUMER_SECRET_KEY.
npx claudepluginhub navisbio/ops-patent-search-mcp --plugin patent-search-mcpCopy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"patent-search-mcp": {
"command": "node",
"args": [
"${CLAUDE_PLUGIN_ROOT}/dist/index.js"
],
"env": {
"PATENT_CONSUMER_KEY": "${PATENT_CONSUMER_KEY}",
"PATENT_CONSUMER_SECRET_KEY": "${PATENT_CONSUMER_SECRET_KEY}"
}
}
}
}Replace placeholder values for: PATENT_CONSUMER_KEY, PATENT_CONSUMER_SECRET_KEY
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
This server has elevated permissions. Review the source code before enabling.
Server configuration and connection parameters
nodeCommand-line arguments passed to the server process
Environment variables set when the server starts
PATENT_CONSUMER_KEY=${PATENT_CONSUMER_KEY}PATENT_CONSUMER_SECRET_KEY=${PATENT_CONSUMER_SECRET_KEY}Sensitive values you must provide — never committed to source control
Share bugs, ideas, or general feedback.