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
# Pathways: {{ query }}
{% if count == 0 -%}
No pathways found
{% else -%}
Found {{ count }} pathway{% if count != 1 %}s{% endif %}{% if total %} (of {{ total }} total){% endif %}
| ID | Name |
|---|---|
{% for row in results -%}
| {{ row.id }} | {{ row.name }} |
{% endfor %}
Use `get pathway <id>` for details.
{% if pagination_footer %}
{{ pagination_footer }}
{% endif %}
{% endif -%}