telekash-mcp-server

telekash-mcp-server

Prediction market probability oracle for AI agents. 26 tools across 500+ live markets from Kalshi and Polymarket. Cross-source arbitrage detection, structured TPF signals, Kelly Criterion sizing, agent performance tracking, and webhook alerts.

Category
访问服务器

README

TeleKash MCP Server

Prediction market probability oracle for AI agents.

npm version License: MIT MCP Compatible Node 18+

What is this?

TeleKash is the probability oracle for the agent economy. Real-time access to 4,500+ live prediction markets from Kalshi (CFTC-regulated) and Polymarket. Structured trading signals, cross-source arbitrage detection, noise filtering, and smart trade routing across crypto, politics, sports, entertainment, finance, weather, tech, and science.

What makes it different:

  • Multi-source — Kalshi + Polymarket + native pools, not single-exchange
  • Self-calibrating — Platt scaling with daily recalibration cycles and Brier score tracking
  • Universal Payment Layer — agents pay per-call with USDC (Base/Polygon/Solana via x402), fiat (Stripe), or TON
  • 28 tools — from free probabilities to broker execution with 1% commission

Quick Install

npx telekash-mcp-server

Claude Code

claude mcp add telekash-oracle npx telekash-mcp-server

Claude Desktop / Cursor

Add to your MCP configuration file:

{
  "mcpServers": {
    "telekash-oracle": {
      "command": "npx",
      "args": ["telekash-mcp-server"]
    }
  }
}

Tools

28 tools across 4 categories. All tools work without an API key on the Free tier (100 queries/day). 4,500+ live markets.

Intelligence

Tool What it does Tier
get_probability Real-time YES/NO probability with volume-weighted confidence score Free
list_markets Browse markets by category, source, jurisdiction, with sorting Free
search_markets Full-text search across 4,500+ markets Free
get_history Historical probability changes over 1h, 24h, 7d, 30d Free
get_sentiment AI sentiment analysis with conviction, momentum, and noise filter Free
get_market_stats Aggregate statistics across all markets and sources Free
get_trending Markets with the biggest probability swings Free
compare_sources Kalshi vs Polymarket side-by-side odds comparison Calibration

Analytics

Tool What it does Tier
detect_arbitrage Cross-source arbitrage opportunities with buy/sell signals Calibration
get_signal Structured TPF signal: probability + sentiment + noise filter + verdict Calibration
get_divergences Markets where sources disagree most (STRONG/MODERATE/WEAK) Calibration
get_edge Kelly Criterion sizing, expected value, and risk classification Calibration
track_prediction Record predictions for accuracy tracking Calibration
get_performance Brier score, calibration curve, edge-vs-market analysis Calibration

Trading

Tool What it does Tier
execute_trade Route trades to Kalshi, Polymarket, or native parimutuel pools Edge
get_order_status Check fill status, price, and commission on broker orders Edge
cancel_order Cancel pending or submitted broker orders Edge
get_pool_status Native pool composition, participant counts, implied odds Edge
get_agent_balance Agent balance, P&L, win rate, and pool position count Edge
get_resolution_status Multi-source resolution verification and confidence levels Edge
create_market Create custom binary prediction markets Edge
export_data Bulk export: probability history, resolutions, catalogs, arbitrage Edge

Admin

Tool What it does Tier
generate_api_key Generate a free API key (no signup required) Free
get_usage Check current API usage, rate limits, and tier status Free
register_alert Webhook alerts for probability crosses, mispricings, volume spikes Edge
list_alerts List active webhook alerts with delivery stats Edge
delete_alert Delete a webhook alert Edge
get_health System health: connectivity, data freshness, broker status Free

Pricing

Per-query pricing. No subscriptions. Free tier requires no API key.

Tier Cost Queries/Day What you get
Free $0 100 Probabilities, search, trending, sentiment, stats, health
Calibration $0.01/query 1,000 + Cross-source comparison, arbitrage, signals, divergence, Kelly sizing, performance tracking
Edge $0.05/query Unlimited + Broker trading (1% commission), native pools (5% fee), webhooks, data export, market creation

Revenue model

Stream Rate Description
Intelligence queries $0 - $0.05/query Real-time probability, sentiment, signals
Broker trades 1% commission Best-price execution routed to Kalshi or Polymarket
Native pool trades 5% fee at resolution Parimutuel pools alongside Telegram users

Universal Payment Layer

Agents can also pay per-call without an API key or tier — attach payment proof directly in tool arguments.

Rail Network Asset Fee
x402 (Coinbase) Base, Polygon, Solana USDC Free (0%)
Stripe MPP Fiat USD (cards, bank) 2.9%
TON TON mainnet TON Free (0%)
// Agent pays per-call — no subscription needed
const result = await client.callTool({
  name: "get_signal",
  arguments: {
    query: "Bitcoin 200K",
    x402_payment: {
      tx_hash: "0xabc...",
      network: "base",
      rail: "x402",
    },
  },
});

Get an API key

# Via the MCP server itself (free tier, no signup)
# Call the generate_api_key tool

# Or via Telegram
# Message @TeleKashBot with /apikey

Example

Connect to the server and query a market probability:

import { Client } from "@modelcontextprotocol/sdk/client/index.js";
import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js";

const transport = new StdioClientTransport({
  command: "npx",
  args: ["telekash-mcp-server"],
});

const client = new Client({ name: "my-agent", version: "1.0.0" });
await client.connect(transport);

// Get probability for a market
const result = await client.callTool({
  name: "get_probability",
  arguments: { query: "Will Bitcoin hit $200K by end of 2026?" },
});

console.log(result.content);
// => { probability: { yes: 34, no: 66 }, confidence: { grade: "HIGH", score: 82 }, ... }

More examples in the examples/ directory:

  • quick-start.ts -- Connect, search, get probabilities
  • arbitrage-scanner.ts -- Find cross-source mispricings
  • portfolio-scanner.ts -- Scan markets and build a ranked portfolio
  • market-monitor.ts -- Watch a market and log probability changes

Environment Variables

The server works without any credentials (returns demo data). For live market access:

SUPABASE_URL=https://rrkjtdnxkscukexbsrue.supabase.co
SUPABASE_ANON_KEY=your-anon-key
TELEKASH_API_KEY=your-api-key              # Optional: enables paid tiers
TELEKASH_PAYMENT_ADDRESS=0x...             # Optional: EVM wallet for x402 USDC payments
TELEKASH_TON_ADDRESS=UQ...                 # Optional: TON wallet for TON payments
STRIPE_SECRET_KEY=sk_...                   # Optional: Stripe for fiat payments
X402_FACILITATOR_URL=https://x402.org/facilitator  # Default: Coinbase facilitator

Data Sources

Source Type Sync Frequency
Kalshi CFTC-regulated US exchange Every 15 minutes
Polymarket Crypto-native exchange Every hour

All sources are aggregated, deduplicated, and categorized automatically across 8 categories: crypto, politics, sports, entertainment, finance, weather, tech, science.

Links

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选