venue_quotes
Pack: market-spread · Endpoint: https://gateway.pipeworx.io/market-spread/mcp
Single-venue drill-down: fetch one venue’s current top 5 matches for a query, each as { title, implied_probability (0-1 or null), url }. Useful after compare_topic to look closer at one venue. Implied probability is the main/YES outcome where available; multi-outcome markets report the top outcome and note it. Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
venue | string | yes | One of: polymarket, kalshi, manifold, predictit, futuur. |
query | string | yes | Question / topic text to search on that venue. |
Example call
Arguments
{
"venue": "polymarket",
"query": "trump 2024 election"
}
curl
curl -X POST https://gateway.pipeworx.io/market-spread/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"venue_quotes","arguments":{"venue":"polymarket","query":"trump 2024 election"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('venue_quotes', {
"venue": "polymarket",
"query": "trump 2024 election"
});
More examples
{
"venue": "kalshi",
"query": "government shutdown"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"market-spread": {
"url": "https://gateway.pipeworx.io/market-spread/mcp"
}
}
}
See Getting Started for client-specific install steps.