Skip to main content
Glama
Augmented-Nature

Unofficial PubChem MCP Server

search_patents

Find chemical patents and intellectual property information using PubChem Compound ID or a custom query. Access detailed patent data from the Unofficial PubChem MCP Server.

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 main handler function that executes the logic for the 'search_patents' tool. Currently implemented as a placeholder indicating that 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 input schema defining the parameters for the 'search_patents' tool, including optional cid and query fields.
    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:696-707 (registration)
    The registration of the 'search_patents' tool in the ListToolsRequestSchema handler, including name, description, and schema.
    { 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: [], }, },

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