propline-mcp 0.22.0 → 0.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +46 -1
- package/dist/http.js +942 -0
- package/dist/http.js.map +1 -0
- package/dist/index.js +53 -41
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -46,6 +46,35 @@ The model uses these tools transparently:
|
|
|
46
46
|
| `propline_get_event_ev` | Pro: cross-book +EV with no-vig fair lines |
|
|
47
47
|
| `propline_get_best_line` | Hobby+: cross-book line shopping — best price per (market, player, line) across all comparable books, `all_prices` sorted best-first; optional `bookmakers` filter |
|
|
48
48
|
|
|
49
|
+
## Hosted endpoint (no install)
|
|
50
|
+
|
|
51
|
+
The same 21 tools are served over **Streamable HTTP** at
|
|
52
|
+
|
|
53
|
+
```
|
|
54
|
+
https://mcp.prop-line.com/mcp
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Use it from any remote-capable client — nothing to install, nothing to run.
|
|
58
|
+
|
|
59
|
+
| Client | How |
|
|
60
|
+
|---|---|
|
|
61
|
+
| Claude Code | `claude mcp add --transport http propline https://mcp.prop-line.com/mcp` |
|
|
62
|
+
| Claude.ai / Claude Desktop | Settings → Connectors → Add custom connector → URL above |
|
|
63
|
+
| Cursor | Settings → MCP → Add server → type `http`, URL above ([one-click](https://cursor.com/en/install-mcp?name=propline&config=eyJ1cmwiOiJodHRwczovL21jcC5wcm9wLWxpbmUuY29tL21jcCJ9)) |
|
|
64
|
+
| ChatGPT (developer mode) | Settings → Connectors → Create → MCP server URL above |
|
|
65
|
+
| Any client | Streamable HTTP, endpoint `/mcp`; `GET /` returns a JSON manifest |
|
|
66
|
+
|
|
67
|
+
**Auth is per request.** Send your PropLine key as `Authorization: Bearer <key>` (or `X-API-Key: <key>`, or `?apiKey=<key>` for clients that cannot set headers). With no key the endpoint falls back to the shared free demo key — every tool works, paid features are redacted, limits are pooled. Keys are used for the one request and never stored.
|
|
68
|
+
|
|
69
|
+
Claude Code with your own key:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
claude mcp add --transport http propline https://mcp.prop-line.com/mcp \
|
|
73
|
+
--header "Authorization: Bearer YOUR_KEY"
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
The stdio build below (`npx -y propline-mcp`) is the same code; pick whichever your client prefers.
|
|
77
|
+
|
|
49
78
|
## Zero-config quick start
|
|
50
79
|
|
|
51
80
|
No key needed to try it. The server falls back to a shared public demo key, so this just works:
|
|
@@ -82,7 +111,7 @@ Edit `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) o
|
|
|
82
111
|
}
|
|
83
112
|
```
|
|
84
113
|
|
|
85
|
-
Restart Claude Desktop. The hammer icon should show 21 PropLine tools.
|
|
114
|
+
Restart Claude Desktop. The hammer icon should show 21 PropLine tools. (Or skip the install and add `https://mcp.prop-line.com/mcp` as a custom connector — see the hosted endpoint above.)
|
|
86
115
|
|
|
87
116
|
#### Claude Code
|
|
88
117
|
|
|
@@ -113,6 +142,22 @@ PropLine is API-compatible at the response level (same `bookmakers[].markets[].o
|
|
|
113
142
|
|
|
114
143
|
Pricing: free at 1,000 req/day (vs their 500/month), Pro at $19/mo for 25,000 req/day, Streaming at $79/mo for 1,000,000 req/day. No credit math.
|
|
115
144
|
|
|
145
|
+
## Links
|
|
146
|
+
|
|
147
|
+
- **Hosted MCP endpoint**: `https://mcp.prop-line.com/mcp` (Streamable HTTP)
|
|
148
|
+
- **Website**: [prop-line.com](https://prop-line.com/?ref=mcp)
|
|
149
|
+
- **API Docs**: [prop-line.com/docs](https://prop-line.com/docs?ref=mcp)
|
|
150
|
+
- **Recipes** (code for common jobs): [prop-line.com/recipes](https://prop-line.com/recipes?ref=mcp)
|
|
151
|
+
- **Odds API by sport and market** (live line, books, graded hit rate): [prop-line.com/odds-api](https://prop-line.com/odds-api?ref=mcp)
|
|
152
|
+
- **Prop resolution** (every prop graded against the box score): [prop-line.com/prop-resolution-api](https://prop-line.com/prop-resolution-api?ref=mcp)
|
|
153
|
+
- **Cross-book +EV**: [prop-line.com/ev](https://prop-line.com/ev?ref=mcp)
|
|
154
|
+
- **Pricing**: [prop-line.com/pricing](https://prop-line.com/pricing?ref=mcp)
|
|
155
|
+
- **Dashboard**: [prop-line.com/dashboard](https://prop-line.com/dashboard)
|
|
156
|
+
- **OpenAPI reference**: [api.prop-line.com/docs](https://api.prop-line.com/docs)
|
|
157
|
+
- **For AI agents** (llms.txt, MCP setup): [prop-line.com/for-ai-agents](https://prop-line.com/for-ai-agents?ref=mcp)
|
|
158
|
+
- **Python SDK**: [`pip install propline`](https://pypi.org/project/propline/)
|
|
159
|
+
- **Node SDK**: [`npm install propline`](https://www.npmjs.com/package/propline)
|
|
160
|
+
|
|
116
161
|
## License
|
|
117
162
|
|
|
118
163
|
MIT
|