get_class_info
Retrieve detailed information about a specific ontology class, including attributes like preferred labels, definitions, and hierarchical relationships, using the BioOntology MCP Server.
Instructions
Get detailed information about a specific ontology class
Input Schema
Name | Required | Description | Default |
---|---|---|---|
class_id | Yes | Class ID/URI (URL-encoded if necessary) | |
include | No | Comma-separated attributes to include (e.g., prefLabel,definition,parents,children) | |
ontology | Yes | Ontology acronym |
Input Schema (JSON Schema)
{
"properties": {
"class_id": {
"description": "Class ID/URI (URL-encoded if necessary)",
"type": "string"
},
"include": {
"description": "Comma-separated attributes to include (e.g., prefLabel,definition,parents,children)",
"type": "string"
},
"ontology": {
"description": "Ontology acronym",
"type": "string"
}
},
"required": [
"ontology",
"class_id"
],
"type": "object"
}