get_reaction

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

Fetch a single Rhea reaction by its Rhea id (e.g. “RHEA:14293” or “14293”). Returns the balanced plain-text equation plus EC number, ChEBI compound, UniProt enzyme and PubMed cross-references. Rhea is the expert-curated biochemical reaction reference used by UniProt and KEGG. Keyless.

Parameters

NameTypeRequiredDescription
idstringyesA Rhea reaction id, e.g. “RHEA:14293” or “14293”.

Example call

Arguments

{
  "id": "RHEA:14293"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_reaction', {
  "id": "RHEA:14293"
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026