uniprot

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

Alias for prediction — fetch by UniProt accession explicitly.

Parameters

NameTypeRequiredDescription
uniprot_idstringyes

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":"uniprot","arguments":{}}}'

Response shape

FieldTypeDescription
entryIdstringAlphaFold entry identifier
uniprotAccessionstringUniProt accession code
uniprotIdstringUniProt ID
mgnifyIdstringMGnify identifier
organismstringOrganism name
sequenceLengthintegerLength of protein sequence
sequencestringAmino acid sequence
modelCreatedDatestringISO date when model was created
discoveredDatestringISO date when structure was discovered
plddtnumberMean predicted local distance difference test score
structuresarrayAvailable structure files
alphafoldVersionstringAlphaFold version used
Full JSON Schema
{
  "type": "object",
  "description": "Full prediction metadata and structure file URLs",
  "properties": {
    "entryId": {
      "type": "string",
      "description": "AlphaFold entry identifier"
    },
    "uniprotAccession": {
      "type": "string",
      "description": "UniProt accession code"
    },
    "uniprotId": {
      "type": "string",
      "description": "UniProt ID"
    },
    "mgnifyId": {
      "type": "string",
      "description": "MGnify identifier"
    },
    "organism": {
      "type": "string",
      "description": "Organism name"
    },
    "sequenceLength": {
      "type": "integer",
      "description": "Length of protein sequence"
    },
    "sequence": {
      "type": "string",
      "description": "Amino acid sequence"
    },
    "modelCreatedDate": {
      "type": "string",
      "description": "ISO date when model was created"
    },
    "discoveredDate": {
      "type": "string",
      "description": "ISO date when structure was discovered"
    },
    "plddt": {
      "type": "number",
      "description": "Mean predicted local distance difference test score"
    },
    "structures": {
      "type": "array",
      "description": "Available structure files",
      "items": {
        "type": "object",
        "properties": {
          "modelUrl": {
            "type": "string",
            "description": "URL to structure file"
          },
          "modelPageUrl": {
            "type": "string",
            "description": "URL to structure details page"
          },
          "cifUrl": {
            "type": "string",
            "description": "CIF format file URL"
          },
          "pdbUrl": {
            "type": "string",
            "description": "PDB format file URL"
          },
          "paeImageUrl": {
            "type": "string",
            "description": "PAE image URL"
          },
          "paeJsonUrl": {
            "type": "string",
            "description": "PAE JSON file URL"
          }
        }
      }
    },
    "alphafoldVersion": {
      "type": "string",
      "description": "AlphaFold version used"
    }
  }
}

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