GnistAI GnistAI
Log in

Health Research

Clinical trials, drug safety reports, and global health indicators in one place. Build health research workflows without juggling three different government APIs.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 Science

Data source: ClinicalTrials.gov, OpenFDA, WHO GHO

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/health-research/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-health-research": {
      "url": "https://context.gnist.ai/mcp/health-research/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/health-research/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "search_health_data", "arguments": {"query": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/health-research/

3 endpoints available:

Shell
curl "https://context.gnist.ai/rest/health-research/search_health_data?query=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/health-research/search_health_data",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "query": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc health-research

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (3)

search_health_data
Search across clinical trials, drug safety, biomedical literature, drug interactions, and global health indicators.
ParameterTypeRequiredDescription
querystringrequiredHealth topic, drug name, condition, or disease to search.
limitintegeroptionalMax results per source. (default: 10)
list_health_sources
List all health research data sources, their coverage, and data types.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related