Fail-closed Polymarket CLOB V2 data and execution; trading tools gated behind PMQ_MCP_LIVE=1.
Most developer tooling work still happens through a UI a human drives. Pmq (Polymarket CLOB V2) MCP server moves it into the conversation instead. Fail-closed Polymarket CLOB V2 data and execution; trading tools gated behind PMQ_MCP_LIVE=1.
Fail-closed execution and market data for Polymarket CLOB V2, in Python, built agent-first. Local signing (your keys never leave your process), exchange-confirmed fills only, fee-correct math, deposit-wallet (POLY_1271) support that actually works in production, order-attribution registries (several bots can share one wallet, each with its own exchange-truth accounting), and a bundled MCP server: plug any LLM or agent framework that speaks MCP (Claude, ChatGPT, LangChain, your own loop) on top and it can read every market and, if and only if the operator enables it, trade under hard rails: tools that
Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.
The server publishes 14 tools. What each one is for:
Situation — What pmq doessignature_type — Walletpmq_status — nothingfind_markets — nothingevent — nothingmarket — nothingmarket_snapshot — nothingbook — nothingorder_preview — nothingtaker_fee — nothingaccount_collateral — paper mode, or keysaccount_trades — paper mode, or keysConfiguration is passed through the environment: PMQ_MCP_PAPER, PMQ_MCP_LIVE, PMQ_MCP_MAX_USD, PMQ_MCP_DAILY_USD, POLY_PRIVATE_KEY, POLY_FUNDER, POLY_SIG_TYPE. 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.
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. Pmq (Polymarket CLOB V2)'s toolset — Situation, signature_type, pmq_status and 11 more — is a fair guide to whether it matches your workflow. It is maintained by crp4222; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Pmq (Polymarket CLOB V2)'s own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| Situation | What pmq does |
| signature_type | Wallet |
| pmq_status | nothing |
| find_markets | nothing |
| event | nothing |
| market | nothing |
| market_snapshot | nothing |
| book | nothing |
| order_preview | nothing |
| taker_fee | nothing |
| account_collateral | paper mode, or keys |
| account_trades | paper mode, or keys |
| account_portfolio | paper mode, or public wallet |
| fak_buy | PMQ_MCP_PAPER=1, or keys plus PMQ_MCP_LIVE=1 |
{
"mcpServers": {
"pmq": {
"command": "uvx",
"args": ["--from", "pmquant[mcp]", "pmq-mcp"],
"env": {
"PMQ_MCP_LIVE": "1",
"PMQ_MCP_MAX_USD": "10",
"PMQ_MCP_DAILY_USD": "25",
"POLY_PRIVATE_KEY": "...",
"POLY_FUNDER": "0x...",
"POLY_SIG_TYPE": "3"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| PMQ_MCP_PAPER | Configuration value read at startup. | Optional |
| PMQ_MCP_LIVE | Configuration value read at startup. | Optional |
| PMQ_MCP_MAX_USD | Configuration value read at startup. | Optional |
| PMQ_MCP_DAILY_USD | Configuration value read at startup. | Optional |
| POLY_PRIVATE_KEY | Credential the server authenticates with. | Yes |
| POLY_FUNDER | Configuration value read at startup. | Optional |
| POLY_SIG_TYPE | Configuration value read at startup. | Optional |
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.