catnap_antibody_info
Pack: catnap · Endpoint: https://gateway.pipeworx.io/catnap/mcp
Metadata for an HIV antibody in LANL CATNAP: which region of the virus it binds (CD4 binding site, V3 glycan, MPER, …), its aliases, the paper that isolated it with PubMed id, light chain type, ADCC activity, and its mean panel IC50 with the number of viruses tested. Answers “what does PGT121 bind”, “who isolated 10-1074”, “how broad is this antibody’s panel”. For the per-strain measurements behind that panel, use catnap_search_neutralization.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Antibody name or alias, substring match, e.g. “VRC01”, “PGT121”. |
limit | number | no | Maximum antibodies to return (default 10, max 50). |
Example call
Arguments
{
"name": "10-1074"
}
curl
curl -X POST https://gateway.pipeworx.io/catnap/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"catnap_antibody_info","arguments":{"name":"10-1074"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('catnap_antibody_info', {
"name": "10-1074"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"catnap": {
"url": "https://gateway.pipeworx.io/catnap/mcp"
}
}
}
See Getting Started for client-specific install steps.