search_markets

Pack: futuur · Endpoint: https://gateway.pipeworx.io/futuur/mcp

Search Futuur prediction markets (politics, crypto, sports, science) by text. Returns open markets by default with per-outcome implied probabilities in both play-money (OOM) and real-money (USDC) modes. Keyless.

Parameters

NameTypeRequiredDescription
searchstringnoText query, e.g. “trump”, “bitcoin”, “world cup”. Omit to browse top markets.
currency_modestringnoWhich currency the per-outcome probabilities reflect: “real_money” (USDC) or “play_money” (OOM). Both are always returned; this just hints which to emphasize. Default “real_money”.
statusstringnoMarket status: “open” (default) or “resolved”.
limitnumbernoMax markets to return (default 10, max 25).

Example call

Arguments

{
  "search": "bitcoin price 2025"
}

curl

curl -X POST https://gateway.pipeworx.io/futuur/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_markets","arguments":{"search":"bitcoin price 2025"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search_markets', {
  "search": "bitcoin price 2025"
});

More examples

{
  "search": "US election",
  "currency_mode": "play_money",
  "status": "open",
  "limit": 15
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "futuur": {
      "url": "https://gateway.pipeworx.io/futuur/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 9, 2026