Connects Claude to the Digimon API at digi-api.com for querying information about Digimon creatures, their attributes, and evolutions. The server runs through Pipeworx's gateway infrastructure, which lets you either connect directly to this single data source or hook into their broader platform of 838+ APIs. The ask_pipeworx interface is worth noting: instead of calling specific tools, you can ask natural language questions and it routes to the right endpoint automatically. Straightforward option if you're building anything that needs Digimon reference data or want to let an agent answer questions about the franchise without maintaining your own dataset.
Digimon API MCP (digi-api.com).
Part of Pipeworx — an MCP gateway connecting AI agents to 838+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"digimon": {
"url": "https://gateway.pipeworx.io/digimon/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 838+ 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 Digimon data" })
The gateway picks the right tool and fills the arguments automatically.
MIT