find_interactions

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

IntAct (EBI) molecular-interaction database — find protein-protein and other molecular interactions for a gene/protein (by name or UniProt id), with detection method, interaction type, organism, PubMed ref, and MI confidence score. Keyless.

Parameters

NameTypeRequiredDescription
querystringyesGene name, protein name, or UniProt accession (e.g. “EGFR_HUMAN”, “BRCA2”, “P04637”).
limitnumbernoMax interactions to return (default 20, max 100).
pagenumbernoPage number, 0-indexed (default 0).

Example call

Arguments

{
  "query": "EGFR_HUMAN"
}

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":"find_interactions","arguments":{"query":"EGFR_HUMAN"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "query": "BRCA2",
  "limit": 50,
  "page": 0
}

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