Connects Claude to MyChem.info, a chemical and drug annotation database. Exposes a single metadata tool that pulls dataset statistics and source release information. The real utility here is if you're using the broader Pipeworx gateway, which bundles this with 784+ other data sources and includes an ask_pipeworx function that interprets natural language queries and routes them to the right tool automatically. Standalone, this is pretty minimal. You'd reach for it if you need programmatic access to MyChem's dataset information without writing your own API client, or as part of a larger MCP setup that needs to query chemical compound data alongside other research databases.
MyChem.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 MyChem.info. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"mychem": {
"url": "https://gateway.pipeworx.io/mychem/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 Mychem data" })
The gateway picks the right tool and fills the arguments automatically.
MIT