Nexonco by Nexgene Research is an MCP server that provides access to clinical evidence from the CIViC (Clinical Interpretation of Variants in Cancer) database. It enables fast, flexible search across variants, diseases, drugs, and phenotypes to support precision oncology research.
Before installing Nexonco, you need to have either:
The simplest way to install Nexonco is via PyPI:
pip install nexonco-mcp
Alternatively, you can run Nexonco in a Docker container (specific Docker commands not provided in the original README).
To set up Nexonco as a NANDA server:
To integrate with Claude Desktop:
Nexonco provides a clinical evidence search tool that can be accessed through the MCP protocol.
search_clinical_evidence
: Queries clinical evidence data and returns formatted reports.
The search tool accepts these optional parameters:
disease_name
(str): Filter by disease (e.g., "Lung Non-small Cell Carcinoma")therapy_name
(str): Filter by therapy or drug (e.g., "Cetuximab")molecular_profile_name
(str): Filter by gene or variant (e.g., "EGFR L858R")phenotype_name
(str): Filter by phenotype (e.g., "Chest Pain")evidence_type
(str): Filter by evidence type (e.g., "PREDICTIVE", "DIAGNOSTIC")evidence_direction
(str): Filter by evidence direction (e.g., "SUPPORTS")filter_strong_evidence
(bool): If True
, only includes evidence with a rating > 3 (max 5)The tool returns a formatted string with four sections:
Summary Statistics:
Top 10 Evidence Entries:
Sources & Citations:
Disclaimer:
You can use the following query examples with Claude Desktop:
⚠️ This tool is intended exclusively for research purposes. It is not a substitute for professional medical advice, diagnosis, or treatment.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "nexonco-mcp" '{"command":"npx","args":["-y","nexonco-mcp"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"nexonco-mcp": {
"command": "npx",
"args": [
"-y",
"nexonco-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"nexonco-mcp": {
"command": "npx",
"args": [
"-y",
"nexonco-mcp"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect