Comprehensive MCP server for Manifold Markets providing market creation, trading, liquidity management, and social features
Comprehensive MCP server for Manifold Markets providing market creation, trading, liquidity management, and social features. That is what the manifold mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.
An MCP server for interacting with Manifold Markets prediction markets. This server provides comprehensive access to Manifold's features through a clean MCP interface, enabling sophisticated market interactions and collective intelligence mechanisms.
The server publishes 9 tools. What each one is for:
create_market — Create a new prediction market: typescript { outcomeType: 'BINARY' | 'MULTIPLE_CHOICE' | 'PSEUDO_NUMERIC' | 'POLL' | 'BOUNTIED_QUESTION' questionunresolve_market — Unresolve a previously resolved market: typescript { contractId: string answerId?: string // For multiple choice markets }close_market — Close a market for trading: typescript { contractId: string closeTime?: number // Optional close time }follow_market — Follow or unfollow a market: typescript { contractId: string follow: boolean }react — React to markets or comments: typescript { contentId: string contentType: 'comment' | 'contract' remove?: boolean reactionType: 'like' | 'dislike' }place_bet — Place a bet on a market: typescript { marketId: string amount: number outcome: 'YES' | 'NO' limitProb?: number // 0.01-0.99 }sell_shares — Sell shares in a market: typescript { marketId: string outcome?: 'YES' | 'NO' shares?: number // Defaults to all }add_liquidity — Add liquidity to market pool: typescript { marketId: string amount: number }remove_liquidity — Remove liquidity from market pool: typescript { contractId: string amount: number }Configuration is passed through the environment: MANIFOLD_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
The server ships on npm as manifold-mcp-server, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Manifold's toolset — create_market, unresolve_market, close_market and 6 more — is a fair guide to whether it matches your workflow. It is maintained by bmorphism; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Manifold's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| create_market | Create a new prediction market: typescript { outcomeType: 'BINARY' | 'MULTIPLE_CHOICE' | 'PSEUDO_NUMERIC' | 'POLL' | 'BOUNTIED_QUESTION' question: string description?: string | { type: 'doc' content: any[] } closeTime?: |
| unresolve_market | Unresolve a previously resolved market: typescript { contractId: string answerId?: string // For multiple choice markets } |
| close_market | Close a market for trading: typescript { contractId: string closeTime?: number // Optional close time } |
| follow_market | Follow or unfollow a market: typescript { contractId: string follow: boolean } |
| react | React to markets or comments: typescript { contentId: string contentType: 'comment' | 'contract' remove?: boolean reactionType: 'like' | 'dislike' } |
| place_bet | Place a bet on a market: typescript { marketId: string amount: number outcome: 'YES' | 'NO' limitProb?: number // 0.01-0.99 } |
| sell_shares | Sell shares in a market: typescript { marketId: string outcome?: 'YES' | 'NO' shares?: number // Defaults to all } |
| add_liquidity | Add liquidity to market pool: typescript { marketId: string amount: number } |
| remove_liquidity | Remove liquidity from market pool: typescript { contractId: string amount: number } |
{
"mcpServers": {
"manifold": {
"command": "npx",
"args": ["-y", "manifold-mcp-server"],
"env": {
"MANIFOLD_API_KEY": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| MANIFOLD_API_KEY | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.