get_entry
Pack: interpro · Endpoint: https://gateway.pipeworx.io/interpro/mcp
Get full details for a single InterPro entry by accession (e.g. “IPR000001”). Returns the entry name, type, a plain-text description, member-signature/protein counters, and associated GO terms (molecular function / biological process / cellular component). Use after search_entries or entries_for_protein to learn what a family/domain actually is. Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
accession | string | yes | InterPro accession, e.g. “IPR000001”. |
Example call
Arguments
{
"accession": "IPR000001"
}
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":"get_entry","arguments":{"accession":"IPR000001"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_entry', {
"accession": "IPR000001"
});
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.