participants

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

Entity participants of a pathway.

Parameters

NameTypeRequiredDescription
idstringyes

Example call

Arguments

{
  "id": "R-HSA-68886"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('participants', {
  "id": "R-HSA-68886"
});

Response shape

Always returns: items, count

FieldTypeDescription
itemsarrayEntity participants in a pathway
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "Entity participants in a pathway",
      "items": {
        "type": "object",
        "properties": {
          "dbId": {
            "type": "number",
            "description": "Internal database ID"
          },
          "displayName": {
            "type": "string",
            "description": "Participant name"
          },
          "stableId": {
            "type": "string",
            "description": "Stable identifier"
          },
          "className": {
            "type": "string",
            "description": "Type of participant"
          },
          "schemaClass": {
            "type": "string",
            "description": "Schema class"
          }
        }
      }
    },
    "count": {
      "type": "integer",
      "description": "Number of items returned."
    }
  },
  "required": [
    "items",
    "count"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026