summary
Pack: alphafold · Endpoint: https://gateway.pipeworx.io/alphafold/mcp
Short summary for a prediction (organism, sequence, mean pLDDT).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
qualifier | string | yes |
Example call
curl -X POST https://gateway.pipeworx.io/alphafold/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"summary","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
uniprotAccession | string | UniProt accession code |
organism | string | Organism name |
sequence | string | Amino acid sequence |
plddt | number | Mean predicted local distance difference test score |
Full JSON Schema
{
"type": "object",
"description": "Summary of protein prediction",
"properties": {
"uniprotAccession": {
"type": "string",
"description": "UniProt accession code"
},
"organism": {
"type": "string",
"description": "Organism name"
},
"sequence": {
"type": "string",
"description": "Amino acid sequence"
},
"plddt": {
"type": "number",
"description": "Mean predicted local distance difference test score"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"alphafold": {
"url": "https://gateway.pipeworx.io/alphafold/mcp"
}
}
}
See Getting Started for client-specific install steps.