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
# Trial Search Results
{% if total -%}
Results: {{ count }} of {{ total }}
{% else -%}
Found: {{ count }} trial(s)
{% endif %}
{% if query %}Query: {{ query }}{% endif %}
{% if count == 0 -%}
No trials found matching the filters.
{% else -%}
|NCT ID|Title|Status|Phase|Conditions|
|---|---|---|---|---|
{% for t in results -%}
|{{ t.nct_id }}|{{ t.title | truncate(25) }}|{{ t.status }}|{{ t.phase | default("-") | phase_short }}|{{ t.conditions | conditions_short }}|
{% endfor %}
Use `get trial <nct_id>` for details.
Filters: -c <condition>, -i <intervention>, --facility <name>, --age <years>, --sex <female|male|all>, -s <status>, -p <phase>, --mutation <text>, --sponsor-type <nih|industry|fed|other>, --lat <N> --lon <N> --distance <mi>, --results-available, --count-only
{% if pagination_footer %}
{{ pagination_footer }}
{% endif %}
{% endif %}