search

Pack: rcsb-pdb · Endpoint: https://gateway.pipeworx.io/rcsb-pdb/mcp

“Find protein structure of [target]” / “search PDB for [protein]” / “is there a crystal structure of [X]” / “[disease target] structures” / “CRISPR / kinase / GPCR structures” — text search the RCSB PDB (the global archive of experimentally-determined 3D protein/RNA/DNA structures). Returns matching PDB IDs you can pass to structure or summary. Use for structural biology, drug design, protein characterization.

Parameters

NameTypeRequiredDescription
querystringyesFree-text, e.g. “CRISPR Cas9”.
return_typestringnoentry (default) | polymer_entity | non_polymer_entity | assembly
limitnumberno1-1000 (default 25).

Example call

Arguments

{
  "query": "CRISPR Cas9"
}

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":"search","arguments":{"query":"CRISPR Cas9"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search', {
  "query": "CRISPR Cas9"
});

More examples

{
  "query": "COVID-19 spike protein",
  "return_type": "polymer_entity",
  "limit": 10
}

Response shape

FieldTypeDescription
hitsnumberTotal number of hits matching the query
resultsarrayArray of matching entries/entities
Full JSON Schema
{
  "type": "object",
  "description": "Search results from RCSB PDB text search",
  "properties": {
    "hits": {
      "type": "number",
      "description": "Total number of hits matching the query"
    },
    "results": {
      "type": "array",
      "description": "Array of matching entries/entities",
      "items": {
        "type": "object",
        "description": "Result object from RCSB search API"
      }
    }
  }
}

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.

Regenerated from source · build July 6, 2026