Cure Cancer With AI MCP Server

Cure Cancer With AI MCP Server

Provides oncology data (research, news, FDA approvals, clinical trials) and IBM MAMMAL biomedical predictions (PPI, DTI, ClinTox) as MCP tools. Allows AI agents to query cancer datasets and run predictions through a remote MCP server.

Category
Visit Server

README

Cure Cancer With AI — Public API

A free public REST API and MCP server for oncology data: peer-reviewed research papers (PubMed), curated cancer news, FDA-approved oncology drugs, clinical trials, and a cross-dataset keyword search — plus IBM MAMMAL biomedical foundation-model predictions (protein–protein interaction, drug–target affinity, and ClinTox clinical-trial toxicity).

Base URL: https://www.curecancerwithai.com · Docs: https://www.curecancerwithai.com/developers · OpenAPI 3.1 spec · Agent instructions

OpenAPI MCP License: MIT


What it's for

If you need to programmatically access oncology research, clinical trials, FDA approvals, or cancer news, or to run biomedical model predictions (protein–protein interaction, drug–target binding affinity, drug toxicity), this API gives you clean JSON with a free API key. It's a good fit for research tools, dashboards, chatbots, and AI agents.

Quickstart

  1. Get a free API key — sign in at https://www.curecancerwithai.com/api-keys and click Create key (format ccw_live_..., shown once).
  2. Send it on every request as a Bearer token:
curl "https://www.curecancerwithai.com/api/v1/search?q=osimertinib&types=research,fdaApprovals" \
  -H "Authorization: Bearer ccw_live_YOUR_KEY"
  • Auth: Authorization: Bearer ccw_live_... (or x-api-key: ccw_live_...)
  • Free tier: 100 requests/hour per key (rolling window). Watch X-RateLimit-Remaining; on HTTP 429 wait for Retry-After.
  • List endpoints return { data: [...], pagination: {...} }; single-record endpoints return { data: {...} }; errors return { error: "..." }.

Endpoints

Method Path Description
GET /api/v1/research Peer-reviewed oncology research papers (PubMed)
GET /api/v1/research/{idOrPubmedId} A single research paper
GET /api/v1/news Curated cancer news
GET /api/v1/blog Editorial blog posts (excerpts)
GET /api/v1/blog/{slug} A single blog post (full content)
GET /api/v1/fda-approvals FDA-approved oncology drugs
GET /api/v1/clinical-trials Clinical trials from public registries
GET /api/v1/clinical-trials/{nctId} A single trial (eligibility + locations)
GET /api/v1/search Cross-dataset keyword search (all datasets at once)
POST /api/v1/mammal/ppi MAMMAL: protein–protein interaction
POST /api/v1/mammal/dti MAMMAL: drug–target interaction (pKd)
POST /api/v1/mammal/clintox MAMMAL: ClinTox clinical-trial toxicity

Common query params on list endpoints: limit (1–100, default 20), offset, and usually cancerType, search, from/to. Full details and field lists are in the OpenAPI spec and AGENTS.md.

MCP server (for AI agents)

There's a remote Model Context Protocol server over Streamable HTTP that exposes every endpoint above as a tool, so Claude, ChatGPT, and other MCP clients can call the API directly.

  • Endpoint: https://www.curecancerwithai.com/api/mcp
  • Auth: send Authorization: Bearer ccw_live_YOUR_KEY as a header.
{
  "mcpServers": {
    "cure-cancer-with-ai": {
      "url": "https://www.curecancerwithai.com/api/mcp",
      "headers": { "Authorization": "Bearer ccw_live_YOUR_KEY" }
    }
  }
}

Tools: search_oncology, list_research, get_research_paper, list_news, list_blog_posts, get_blog_post, list_fda_approvals, list_clinical_trials, get_clinical_trial, predict_ppi, predict_dti, predict_clintox, mammal_health. See mcp/.

Examples

Runnable samples in examples/: curl.sh, javascript.mjs, python.py. Import openapi.json into Postman or any OpenAPI tool, or use the Postman collection.

Disclaimer

All data is for informational purposes only and is not medical advice. Cite source URLs (url, fullTextUrl, labelPdfUrl) when presenting results to users.

Links

  • Developer docs: https://www.curecancerwithai.com/developers
  • OpenAPI 3.1: https://www.curecancerwithai.com/openapi.json
  • Agent instructions: https://www.curecancerwithai.com/ai-api-instructions.md
  • llms.txt: https://www.curecancerwithai.com/llms.txt
  • Get a free API key: https://www.curecancerwithai.com/api-keys

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured