get_literature_references
Retrieve PubMed citations and scientific literature references for chemical compounds using PubChem Compound IDs to support research and verification.
Instructions
Get PubMed citations and scientific literature references
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cid | Yes | PubChem Compound ID (CID) |
Implementation Reference
- src/index.ts:1203-1205 (handler)The handler function that implements the core logic for the 'get_literature_references' tool. Currently a placeholder returning an unimplemented message.
private async handleGetLiteratureReferences(args: any) { return { content: [{ type: 'text', text: JSON.stringify({ message: 'Literature references not yet implemented', args }, null, 2) }] }; } - src/index.ts:708-719 (registration)Tool registration entry in the ListTools response, defining name, description, and input 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 (helper)Switch case in the tool dispatcher that routes calls to the specific handler.
case 'get_literature_references': return await this.handleGetLiteratureReferences(args);