get_protein_annotations
Retrieve detailed functional annotations and protein information for specified protein IDs, tailored by species, using the STRING-db MCP Server.
Instructions
Get detailed annotations and functional information for proteins
Input Schema
Name | Required | Description | Default |
---|---|---|---|
protein_ids | Yes | List of protein identifiers | |
species | No | Species name or NCBI taxonomy ID (default: 9606 for human) |
Input Schema (JSON Schema)
{
"properties": {
"protein_ids": {
"description": "List of protein identifiers",
"items": {
"type": "string"
},
"type": "array"
},
"species": {
"description": "Species name or NCBI taxonomy ID (default: 9606 for human)",
"type": "string"
}
},
"required": [
"protein_ids"
],
"type": "object"
}