list_pathways

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

List all WikiPathways pathways for a single organism. Give a Latin or common name, e.g. “Homo sapiens”, “human”, or “mouse”. Returns each pathway’s id, name, link, and last revision. Keyless.

Parameters

NameTypeRequiredDescription
organismstringyesOrganism by Latin or common name, e.g. “Homo sapiens”, “human”, “mouse”.
limitnumbernoMax results (default 50, max 200).

Example call

Arguments

{
  "organism": "Homo sapiens"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_pathways', {
  "organism": "Homo sapiens"
});

More examples

{
  "organism": "mouse",
  "limit": 50
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026