Connects Claude to MyVariant.info, a genomics database aggregating variant annotations from dozens of sources. Right now it exposes one tool for fetching dataset metadata like build versions, source lists, and total variant counts. Part of the Pipeworx gateway ecosystem, so you can either hit this specific endpoint or connect to the full gateway for 784+ data sources. Includes an ask_pipeworx wrapper that lets you query in plain English instead of calling tools directly. Useful if you're building genetics research workflows and need programmatic access to variant database stats without hitting the MyVariant API yourself.
MyVariant.info MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 784+ live data sources.
| Tool | Description |
|---|---|
metadata | Dataset statistics and source/release metadata for MyVariant.info (available data sources, build versions, total variant counts). |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"myvariant": {
"url": "https://gateway.pipeworx.io/myvariant/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 Myvariant data" })
The gateway picks the right tool and fills the arguments automatically.
MIT