get_ontology_info
Retrieve detailed information about a specific biological ontology, including optional views, using the BioOntology MCP Server. Input the ontology acronym to explore its structure and entries.
Instructions
Get detailed information about a specific ontology
Input Schema
Name | Required | Description | Default |
---|---|---|---|
acronym | Yes | Ontology acronym (e.g., NCIT, GO, MESH) | |
include_views | No | Include ontology views (default: false) |
Input Schema (JSON Schema)
{
"properties": {
"acronym": {
"description": "Ontology acronym (e.g., NCIT, GO, MESH)",
"type": "string"
},
"include_views": {
"description": "Include ontology views (default: false)",
"type": "boolean"
}
},
"required": [
"acronym"
],
"type": "object"
}