Skip to main content
Glama

get_literature_references

Retrieve PubMed citations and scientific literature references for chemical compounds using their PubChem Compound ID to support research and verification.

Instructions

Get PubMed citations and scientific literature references

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cidYesPubChem Compound ID (CID)

Implementation Reference

  • Placeholder implementation of the get_literature_references tool handler. Returns a message indicating it is not yet implemented.
    private async handleGetLiteratureReferences(args: any) { return { content: [{ type: 'text', text: JSON.stringify({ message: 'Literature references not yet implemented', args }, null, 2) }] }; }
  • Input schema definition for the get_literature_references tool, requiring a CID parameter.
    inputSchema: { type: 'object', properties: { cid: { type: ['number', 'string'], description: 'PubChem Compound ID (CID)' }, }, required: ['cid'], },
  • src/index.ts:708-718 (registration)
    Registration of the get_literature_references tool in the MCP server tools list, including name, description, and schema.
    { name: 'get_literature_references', description: 'Get PubMed citations and scientific literature references', inputSchema: { type: 'object', properties: { cid: { type: ['number', 'string'], description: 'PubChem Compound ID (CID)' }, }, required: ['cid'], }, },
  • src/index.ts:806-807 (registration)
    Dispatcher switch case that routes calls to the get_literature_references tool to its handler.
    case 'get_literature_references': return await this.handleGetLiteratureReferences(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/k-lordbodin7/PubChem-MCP-Server'

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