annotations
Pack: alphafold · Endpoint: https://gateway.pipeworx.io/alphafold/mcp
Sequence-level annotations (e.g. MUTAGEN, LOW_CONFIDENCE_REGIONS).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
qualifier | string | yes | |
type | string | no | Annotation type filter (optional). |
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":"annotations","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
uniprotAccession | string | UniProt accession code |
annotations | array | List of sequence annotations |
Full JSON Schema
{
"type": "object",
"description": "Sequence-level annotations for a protein",
"properties": {
"uniprotAccession": {
"type": "string",
"description": "UniProt accession code"
},
"annotations": {
"type": "array",
"description": "List of sequence annotations",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "Annotation type"
},
"position": {
"type": "integer",
"description": "Position in sequence"
},
"description": {
"type": "string",
"description": "Annotation description"
},
"evidenceCode": {
"type": "string",
"description": "Evidence code"
}
}
}
}
}
}
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.