propline-mcp 0.22.1 → 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 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
 
@@ -115,6 +144,7 @@ Pricing: free at 1,000 req/day (vs their 500/month), Pro at $19/mo for 25,000 re
115
144
 
116
145
  ## Links
117
146
 
147
+ - **Hosted MCP endpoint**: `https://mcp.prop-line.com/mcp` (Streamable HTTP)
118
148
  - **Website**: [prop-line.com](https://prop-line.com/?ref=mcp)
119
149
  - **API Docs**: [prop-line.com/docs](https://prop-line.com/docs?ref=mcp)
120
150
  - **Recipes** (code for common jobs): [prop-line.com/recipes](https://prop-line.com/recipes?ref=mcp)