get_entry

Pack: kegg · Endpoint: https://gateway.pipeworx.io/kegg/mcp

Fetch a full KEGG flat-file entry by ID and return it as parsed fields plus raw text. IDs look like “C00031” (compound), “hsa00010” (pathway), “D00009” (drug), “K00844” (KO/ortholog), or “ec:1.1.1.1” (enzyme). Parsed fields include ENTRY, NAME, FORMULA, CLASS, PATHWAY, DESCRIPTION, cross-references, and more. Use find first to discover IDs. Keyless.

Parameters

NameTypeRequiredDescription
idstringyesA KEGG entry ID, e.g. “C00031”, “hsa00010”, “D00009”, “K00844”, “ec:1.1.1.1”.

Example call

Arguments

{
  "id": "C00031"
}

curl

curl -X POST https://gateway.pipeworx.io/kegg/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_entry","arguments":{"id":"C00031"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_entry', {
  "id": "C00031"
});

More examples

{
  "id": "hsa00010"
}
{
  "id": "D00009"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "kegg": {
      "url": "https://gateway.pipeworx.io/kegg/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 7, 2026