summary
Pack: rcsb-pdb · Endpoint: https://gateway.pipeworx.io/rcsb-pdb/mcp
Lightweight lookup for a PDB entry by 4-char ID: tries the RCSB UniProt endpoint first, falls back to the core entry record. Returns title, experimental method, resolution, and deposition date without the full polymer/ligand detail of structure.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
pdb_id | string | yes |
Example call
Arguments
{
"pdb_id": "1abc"
}
curl
curl -X POST https://gateway.pipeworx.io/rcsb-pdb/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"summary","arguments":{"pdb_id":"1abc"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('summary', {
"pdb_id": "1abc"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Short entry summary record"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"rcsb-pdb": {
"url": "https://gateway.pipeworx.io/rcsb-pdb/mcp"
}
}
}
See Getting Started for client-specific install steps.