streamable-httpupdated 12d ago
Price-action session reads for AI agents — measured statistics, not opinions.
maddog 能做什么?
MADDOG MCP Server
Price-action session reads for AI agents — measured statistics, not opinions.
Endpoint: https://api.maddog.finance/mcp · stateless streamable HTTP · plain-JSON responses, no session to manage.
claude mcp add --transport http maddog https://api.maddog.finance/mcp
MADDOG reads a market session the way a price action trader does, and every number it returns is a historical frequency with a published measurement behind it — never a forecast, never a recommendation:
- a five-class day-type probability distribution — 66% top-1 accuracy over a complete US day session against a 37% majority-class baseline, with a confidence grade whose published accuracy ranges from 95% (best grade) to 41% (worst);
- the window's first range breakout with a calibrated per-event failure estimate (AUC 0.646, calibration error 5.1%, n=2,637, validated on held-out NQ);
- from the 90-minute mark, the measured odds that a new session high or low still prints before the close (69% by day type vs a 48% base rate, held out on 576 sessions the model never saw).
Covers US stocks and ETFs, futures (ES=F), FX, crypto, Hong Kong and China A-shares.
Tools
| Tool | Auth | What it does |
|---|---|---|
get_scoreboard |
none | The service's public forward record: every 11:00 ET read for ES=F/NQ=F/QQQ, snapshotted verbatim and scored after each close. Ties score against the model; days with no live read stay visible as gaps; no row is ever edited. Check this before trusting anything else. |
price_action_read |
optional | The full session read for one symbol. Anonymous callers get one first-look response per UTC day; quota errors carry machine-readable next steps. |
request_free_key |
none | Emails a free evaluation key (10 successful calls per UTC day, no card, no account) so an agent can get its own allowance without leaving the conversation. |
Connecting
Claude Code
claude mcp add --transport http maddog https://api.maddog.finance/mcp
# with a key:
claude mcp add --transport http maddog https://api.maddog.finance/mcp \
--header "X-API-Key: qd_your_key"
Any streamable-HTTP MCP client: point it at https://api.maddog.finance/mcp.
Keys go in the X-API-Key header; Authorization: Bearer qd_… also works for
clients that only speak bearer auth.
Raw JSON-RPC (the endpoint is stateless — one message per POST):
curl -s https://api.maddog.finance/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
"params":{"name":"get_scoreboard","arguments":{"limit":5}}}'
Access & pricing
- Free, forever:
get_scoreboard, one anonymousprice_action_readper UTC day, and a free evaluation key (10 calls/day) viarequest_free_keyorPOST https://api.maddog.finance/v1/access/free-key. - Full access: $99.90/month, first 3 days free on a card collected at checkout — cancelling within the trial costs nothing. A human must complete the card step (3-D Secure); agents cannot and should not.
Why trust the numbers
The claims above were pre-registered before being published and the live model is
scored in public every trading day: the scoreboard
shows each 11:00 ET call next to what the session actually did, including the days the
model was wrong and the days no read was taken. The same data is served raw and keyless
at /v1/scoreboard.
Links
- Site: https://maddog.finance
- API reference: https://maddog.finance/docs · interactive spec
- Forward record: https://maddog.finance/scoreboard
This repository documents the hosted MCP server; the service itself is closed-source. Independent research — not affiliated with or endorsed by Al Brooks. Educational analytics, not investment advice.
安装
把 maddog 添加到你的客户端。选择你正在使用的那个。
claude mcp add --transport http maddog https://api.maddog.finance/mcpcodex mcp add maddog --url https://api.maddog.finance/mcp{
"mcpServers": {
"maddog": {
"url": "https://api.maddog.finance/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"maddog": {
"type": "http",
"url": "https://api.maddog.finance/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"maddog": {
"url": "https://api.maddog.finance/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"maddog": {
"serverUrl": "https://api.maddog.finance/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
3 个工具
maddog 向已连接的智能体提供 3 个工具。
- get_scoreboard
- none
- price_action_read
- optional
- request_free_key
- none
评分
66 / 100
良好
- 文档25/25
- 维护19/25
- 可信度6/20
- 能力4/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 4 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 3 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 4.7.1最新 | 2026年8月26日 |
| 4.7.0 | 2026年8月26日 |