Skip to main content
Glama

get_literature_references

Retrieve associated publications and citations for a specific UniProt accession number using the UniProt MCP Server.

Instructions

Associated publications and citations

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
accessionYesUniProt accession number

Implementation Reference

  • Executes the tool logic: validates input accession, fetches UniProt protein data via API, extracts and formats literature references including PubMed links, returns as JSON or error.
    private async handleGetLiteratureReferences(args: any) { if (!isValidProteinInfoArgs(args)) { throw new McpError(ErrorCode.InvalidParams, 'Invalid literature references arguments'); } try { const response = await this.apiClient.get(`/uniprotkb/${args.accession}`, { params: { format: 'json' }, }); const protein = response.data; const literatureInfo = { accession: protein.primaryAccession, references: protein.references || [], pubmedReferences: protein.uniProtKBCrossReferences?.filter((ref: any) => ref.database === 'PubMed') || [], citationCount: protein.references?.length || 0, }; return { content: [ { type: 'text', text: JSON.stringify(literatureInfo, null, 2), }, ], }; } catch (error) { return { content: [ { type: 'text', text: `Error fetching literature references: ${error instanceof Error ? error.message : 'Unknown error'}`, }, ], isError: true, }; } }
  • src/index.ts:664-673 (registration)
    Registers the tool in the MCP server's tool list with name, description, and input schema for client discovery.
    name: 'get_literature_references', description: 'Associated publications and citations', inputSchema: { type: 'object', properties: { accession: { type: 'string', description: 'UniProt accession number' }, }, required: ['accession'], }, },
  • JSON schema defining the input parameters for the tool: requires a UniProt accession string.
    type: 'object', properties: { accession: { type: 'string', description: 'UniProt accession number' }, }, required: ['accession'], }, },
  • Type guard function validating input arguments for protein-related tools, including accession presence and optional format.
    const isValidProteinInfoArgs = ( args: any ): args is { accession: string; format?: string } => { return ( typeof args === 'object' && args !== null && typeof args.accession === 'string' && args.accession.length > 0 && (args.format === undefined || ['json', 'tsv', 'fasta', 'xml'].includes(args.format)) ); };
  • src/index.ts:776-776 (registration)
    Dispatches tool calls to the specific handler in the CallToolRequestSchema switch statement.
    return 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/Augmented-Nature/UniProt-MCP-Server'

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