Skip to main content
Glama
Augmented-Nature

Unofficial PubChem MCP Server

search_patents

Find chemical patents and intellectual property data using PubChem Compound IDs or search queries to identify patent coverage for compounds.

Instructions

Search for chemical patents and intellectual property information

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cidNoPubChem Compound ID (CID)
queryNoPatent search query (alternative to CID)

Implementation Reference

  • The handler function for the 'search_patents' tool. It currently returns a placeholder response indicating that the patent search is not yet implemented.
    private async handleSearchPatents(args: any) { return { content: [{ type: 'text', text: JSON.stringify({ message: 'Patent search not yet implemented', args }, null, 2) }] }; }
  • The tool definition including name, description, and input schema for 'search_patents' registered in the ListTools response.
    { name: 'search_patents', description: 'Search for chemical patents and intellectual property information', inputSchema: { type: 'object', properties: { cid: { type: ['number', 'string'], description: 'PubChem Compound ID (CID)' }, query: { type: 'string', description: 'Patent search query (alternative to CID)' }, }, required: [], }, },
  • src/index.ts:804-805 (registration)
    The switch case in the CallToolRequest handler that dispatches 'search_patents' calls to the handleSearchPatents method.
    case 'search_patents': return await this.handleSearchPatents(args);

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Augmented-Nature/Augmented-Nature-PubChem-MCP-Server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server