interaction_count

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

IntAct (EBI) — fast count of how many molecular interactions a gene/protein (by name or UniProt id) has. Keyless.

Parameters

NameTypeRequiredDescription
querystringyesGene name, protein name, or UniProt accession (e.g. “EGFR_HUMAN”, “BRCA2”, “P04637”).

Example call

Arguments

{
  "query": "P04637"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('interaction_count', {
  "query": "P04637"
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026