entries_for_protein

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

List all InterPro entries (families, domains, sites) found on a given UniProt protein, by UniProt accession (e.g. “P12345”). Returns each matching InterPro signature with accession, name and type. Useful to functionally annotate a protein. Complements UniProt/AlphaFold. Keyless.

Parameters

NameTypeRequiredDescription
uniprotstringyesUniProt accession, e.g. “P12345”.

Example call

Arguments

{
  "uniprot": "P12345"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('entries_for_protein', {
  "uniprot": "P12345"
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 7, 2026