assembly
Pack: rcsb-pdb · Endpoint: https://gateway.pipeworx.io/rcsb-pdb/mcp
“Biological assembly of [pdb_id]” / “functional oligomer for [PDB entry]” — fetch a biological assembly record (the functional oligomeric unit, which often differs from the crystallographic asymmetric unit). Use when you need the actual functional form of a protein (dimer / tetramer / etc.) rather than the crystal contents.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
pdb_id | string | yes | |
assembly_id | string | no |
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":"assembly","arguments":{"pdb_id":"1abc"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('assembly', {
"pdb_id": "1abc"
});
More examples
{
"pdb_id": "1abc",
"assembly_id": "2"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Biological assembly 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.