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   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 type: dataset aggregator type type dataset aggregator dataset aggregator Science

Data source: ClinicalTrials.gov, OpenFDA, WHO GHO

MCP Endpoint (Streamable HTTP) https://context.gnist.ai/mcp/health-research/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (3)

search_health_data

Search across clinical trials, drug safety, biomedical literature, drug interactions, and global health indicators.

Queries five health data sources in parallel:
- ClinicalTrials.gov — active and completed clinical trials worldwide
- OpenFDA — drug adverse events and drug label information
- WHO GHO — global health indicators (mortality, disease burden, risk factors)
- PubMed — biomedical research articles and citations (36M+ records)
- Interaksjoner.no — Norwegian drug interaction severity checks

Returns clinical trials, adverse events, drug labels, health indicators,
PubMed literature, and drug interaction data for the given topic.

Examples:
search_health_data(query="aspirin")
search_health_data(query="diabetes", limit=5)
search_health_data(query="COVID-19 vaccine")

ParameterTypeRequiredDescription
querystringrequiredHealth topic, drug name, condition, or disease to search.
limitintegeroptionalMax results per source. (default: 10)
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "search_health_data",
    "arguments": {
      "query": "example"
    }
  }
}
list_health_sources

List all health research data sources, their coverage, and data types.

Shows which clinical trial registries, drug safety databases, and global
health observatories are searched during a health research query.

Examples:
list_health_sources()

JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_health_sources",
    "arguments": {}
  }
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "report_feedback",
    "arguments": {
      "feedback": "example"
    }
  }
}

Quick Start

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"}}}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/mcp/health-research/",
    headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
    json={
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "search_health_data",
    "arguments": {
      "query": "example"
    }
  }
},
)
print(resp.json())

Related Toolkits (Science)

Resources