annotations

Pack: alphafold · Endpoint: https://gateway.pipeworx.io/alphafold/mcp

Sequence-level annotations (e.g. MUTAGEN, LOW_CONFIDENCE_REGIONS).

Parameters

NameTypeRequiredDescription
qualifierstringyes
typestringnoAnnotation 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

FieldTypeDescription
uniprotAccessionstringUniProt accession code
annotationsarrayList 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.

Regenerated from source · build May 21, 2026