We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/genomoncology/biomcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{% if section_only -%}
# {{ section_header }}
{% else -%}
# {{ name }}
ID: {{ id }}
{% if species %}Species: {{ species }}{% endif %}
{% if summary -%}
## Summary
{{ summary }}
{% endif -%}
{% endif -%}
{% if show_genes_section and genes -%}
## Genes
{{ genes | join(", ") }}
{% endif -%}
{% if show_events_section and events -%}
## Events
{% for event in events -%}
- {{ event }}
{% endfor -%}
{% endif -%}
{% if show_enrichment_section and enrichment -%}
## Enrichment
| Source | ID | Name | P-value |
|---|---|---|---|
{% for row in enrichment -%}
| {{ row.source }} | {{ row.id }} | {{ row.name | truncate(55) }} | {% if row.p_value is not none %}{{ row.p_value | pval }}{% else %}-{% endif %} |
{% endfor -%}
{% endif -%}
{% if sections -%}
Sections: {{ sections }}
{% endif -%}
{% if related -%}
Related: {{ related }}
{% endif -%}