calculate_descriptors
Generate molecular descriptors and fingerprints for PubChem compounds by CID. Choose descriptor types: basic, topological, 3D, or all to analyze chemical properties and structures.
Instructions
Calculate comprehensive molecular descriptors and fingerprints
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cid | Yes | PubChem Compound ID (CID) | |
| descriptor_type | No | Type of descriptors (default: all) |
Implementation Reference
- src/index.ts:1105-1107 (handler)The main handler function for the 'calculate_descriptors' tool. It currently returns a placeholder response indicating that descriptor calculation is not yet implemented.private async handleCalculateDescriptors(args: any) { return { content: [{ type: 'text', text: JSON.stringify({ message: 'Descriptor calculation not yet implemented', args }, null, 2) }] }; }
- src/index.ts:515-526 (registration)Registration of the 'calculate_descriptors' tool in the ListTools response, including name, description, and input schema definition.{ name: 'calculate_descriptors', description: 'Calculate comprehensive molecular descriptors and fingerprints', inputSchema: { type: 'object', properties: { cid: { type: ['number', 'string'], description: 'PubChem Compound ID (CID)' }, descriptor_type: { type: 'string', enum: ['all', 'basic', 'topological', '3d'], description: 'Type of descriptors (default: all)' }, }, required: ['cid'], }, },
- src/index.ts:768-769 (registration)Tool dispatcher in the CallToolRequestSchema switch statement that routes calls to the handleCalculateDescriptors handler.case 'calculate_descriptors': return await this.handleCalculateDescriptors(args);