Connects Claude to MyDisease.info, a biomedical database aggregating disease annotations from multiple sources. Currently exposes a metadata tool that returns dataset statistics, source versions, and document counts. Part of the Pipeworx gateway ecosystem, which hosts 784+ data sources and includes an ask_pipeworx function that interprets natural language queries and routes them to the appropriate tool. Useful if you're building medical research assistants or need programmatic access to disease data without maintaining separate API clients. Runs over streamable HTTP, so no local installation required.
MyDisease.info MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 784+ live data sources.
| Tool | Description |
|---|---|
metadata | Dataset statistics and release metadata for MyDisease.info (source versions, document counts). |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"mydisease": {
"url": "https://gateway.pipeworx.io/mydisease/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 784+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Mydisease data" })
The gateway picks the right tool and fills the arguments automatically.
MIT