Connects to Manifold Markets, the play-money prediction market platform where you can bet on anything from election outcomes to personal goals. The source doesn't list specific tools, but it's part of the Pipeworx gateway ecosystem, which offers an ask_pipeworx interface that lets you query in plain English instead of calling APIs directly. Useful if you're building agents that need to read or interact with prediction market data, check odds on events, or integrate forecasting into workflows. Available as a standalone server or through the full Pipeworx gateway that bundles 865+ data sources.
Manifold Markets MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 865+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"manifold": {
"url": "https://gateway.pipeworx.io/manifold/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 865+ 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 Manifold data" })
The gateway picks the right tool and fills the arguments automatically.
MIT