AlphaFold
liveBiologyScienceAlphaFold DB — predicted 3-D protein structures for ~214M sequences. Keyless.
4tools
0msauth
free tier50 calls/day
Tools
predictionrequired: qualifierFull prediction record.
Parameters
NameTypeDescription
qualifierreqstring—Try it
Response
summaryrequired: qualifierShort summary.
Parameters
NameTypeDescription
qualifierreqstring—Try it
Response
annotationsrequired: qualifierSequence-level annotations.
Parameters
NameTypeDescription
qualifierreqstring—typeoptstring—Try it
Response
uniprotrequired: uniprot_idSame as prediction (by UniProt id).
Parameters
NameTypeDescription
uniprot_idreqstring—Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/alphafold/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Call a tool
bash
curl -X POST https://gateway.pipeworx.io/alphafold/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"prediction","arguments":{"qualifier": "example"}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("prediction", {"qualifier":"example"});ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("alphafold db — predicted 3-d protein structures for ~214m sequences");