A bridge to the Drug Gene Interaction Database (DGIdb) API, enabling AI clients to query drug-gene interaction data.
This project is available under the MIT License with an Academic Citation Requirement. This means you can freely use, modify, and distribute the code, but any academic or scientific publication that uses this software must provide appropriate attribution.
If you use this software in a research project that leads to a publication, presentation, or report, you must cite this work according to the format provided in CITATION.md.
Commercial and non-academic use follows the standard MIT License terms without the citation requirement.
By using this software, you agree to these terms. See LICENSE.md for the complete license text.This guide helps scientists and researchers use the Drug Gene Interaction Database (DGIdb) through an application called Claude Desktop. This setup allows you to ask questions about drug-gene interactions in plain language and get results directly within Claude.
Essentially, this server gives Claude the "tool" it needs to look up information in the DGIdb.
If this DGIdb MCP Server has been set up and deployed (e.g., by a technical colleague), you can connect your Claude Desktop application to it. This allows you to ask Claude questions like:
Claude will then use this server to find the answers in the DGIdb and present them to you.
Your Claude Desktop application needs to be told where to find this DGIdb server. This is usually done by editing a configuration file for Claude Desktop.
A technical user or administrator would typically handle the deployment of the server and provide you with a specific URL (web address). For example, the server might be available at an address like: https://dgidb-mcp-server.your-organization.workers.dev/sse
.
The configuration in Claude Desktop would then look something like this. You would add the "dgidb" section within the mcpServers
part of your Claude Desktop configuration file:
{
"mcpServers": {
// ... (other server configurations might be here) ...
"dgidb": {
"command": "npx",
"args": [
"mcp-remote",
"https://dgidb-mcp-server.quentincody.workers.dev/sse" // <-- This URL needs to be the actual address of YOUR deployed DGIdb MCP server
]
}
// ... (other server configurations might be here) ...
}
}
Important:
https://dgidb-mcp-server.quentincody.workers.dev/sse
in the example above is illustrative. You will need to replace it with the actual URL where your instance of the DGIdb MCP server is running.Once configured, the DGIdb tool should become available within Claude, allowing you to query the database easily.
If you are a technical user and need to deploy this server (e.g., on Cloudflare Workers):
Get Started:
You can deploy this server to Cloudflare Workers. Refer to the original, more technical README for deployment buttons and command-line instructions (often involving npm create cloudflare@latest
).
Customization:
The server code is in src/index.ts
. This file defines how the server connects to DGIdb and what "tools" it provides to MCP clients.
Connecting to Other Clients (like AI Playground):
Once deployed, you can also connect to your MCP server from other clients like the Cloudflare AI Playground by providing its URL (e.g., https://your-dgidb-server-name.your-account.workers.dev/sse
).
This DGIdb MCP Server uses the publicly available DGIdb GraphQL API at https://dgidb.org/api/graphql
.
A read-only MCP server for querying live data from various APIs using the CData JDBC Driver for API Driver.
A simple MCP server for MySQL, demonstrating fundamental MCP protocol concepts. Requires a MySQL database connection configured via environment variables.
Interact with the data stored in Couchbase clusters using natural language.
A high-performance JavaScript server for the Alliance of Genome Resources (AGR) MCP.
Official CoinGecko API MCP Server for Crypto Price & Market Data, across 200+ blokchain networks and 8M+ tokens.
A read-only MCP server for Adobe Commerce, enabling LLMs to query live data using the CData JDBC driver.
Access a comprehensive database of over 30,000 SaaS products, including reviews, pricing, alternatives, and growth metrics.
Provides tools and resources for coding agents to interact with the Gel database, including automatic project configuration for query builders and ORMs.
Allows AI to interact with Microsoft Access databases, supporting data import and export via CSV files.
A server for managing PostgreSQL databases, enabling comprehensive database operations.