Connects Claude to PredictIt, the political prediction market where users trade on political and economic outcomes. This is part of the Pipeworx gateway ecosystem, which offers a streamable HTTP transport rather than typical stdio. The implementation is light on documented tools in the repo, but follows Pipeworx's pattern of wrapping external APIs with an ask_pipeworx interface that lets you query in natural language instead of calling structured endpoints. You'd use this if you're building something that needs live political futures data or want to integrate prediction market sentiment into your workflows. Can be added standalone or accessed through the full Pipeworx gateway alongside 865+ other data sources.
PredictIt 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": {
"predictit": {
"url": "https://gateway.pipeworx.io/predictit/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 Predictit data" })
The gateway picks the right tool and fills the arguments automatically.
MIT