@agentutility/mcp-statline 0.1.0 → 0.1.2
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 +3 -3
- package/dist/tools.generated.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> Sports and stats math, per call.
|
|
4
4
|
|
|
5
|
-
Live win probability and the analytics around a game —
|
|
5
|
+
Live win probability and the analytics around a game — from the current score and time, in one call.
|
|
6
6
|
|
|
7
7
|
**Pricing:** pay-per-call in USDC on Base. No subscriptions, no API keys. See per-tool prices below.
|
|
8
8
|
|
|
@@ -50,7 +50,7 @@ USDC on Base contract: `0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913`
|
|
|
50
50
|
|
|
51
51
|
| Tool | Description |
|
|
52
52
|
|---|---|
|
|
53
|
-
| `win-prob` | (0.003 USDC/call)
|
|
53
|
+
| `win-prob` | (0.003 USDC/call) Estimates live in-game win probability for NFL, NBA, MLB, NHL, and soccer from the current score and time remaining. Returns each team's win probability, the projected final margin, the size of the swing still possible, and human-readable drivers. Built-in scoring volatility for NFL/NCAAF/NBA/NCAAB/WNBA/MLB/NHL/soccer; override scoring_std for any sport. Statistical estimate, not betting advice. Use it as a live sports win probability API or in-game win chance calculator. |
|
|
54
54
|
|
|
55
55
|
## How it works
|
|
56
56
|
|
|
@@ -71,4 +71,4 @@ The agent never sees the payment flow — it just gets the result.
|
|
|
71
71
|
|
|
72
72
|
---
|
|
73
73
|
|
|
74
|
-
**Version:** 0.1.
|
|
74
|
+
**Version:** 0.1.2 · **License:** MIT
|
package/dist/tools.generated.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/** Auto-generated by scripts/generate-mcp-clusters.mjs. Do not edit by hand. */
|
|
2
2
|
export const CLUSTER_SLUG = "statline";
|
|
3
|
-
export const VERSION = "0.1.
|
|
3
|
+
export const VERSION = "0.1.2";
|
|
4
4
|
export const TOOLS = [
|
|
5
5
|
{
|
|
6
6
|
"name": "win-prob",
|
|
7
7
|
"http_name": "win-prob",
|
|
8
|
-
"description": "(0.003 USDC/call)
|
|
8
|
+
"description": "(0.003 USDC/call) Estimates live in-game win probability for NFL, NBA, MLB, NHL, and soccer from the current score and time remaining. Returns each team's win probability, the projected final margin, the size of the swing still possible, and human-readable drivers. Built-in scoring volatility for NFL/NCAAF/NBA/NCAAB/WNBA/MLB/NHL/soccer; override scoring_std for any sport. Statistical estimate, not betting advice. Use it as a live sports win probability API or in-game win chance calculator.",
|
|
9
9
|
"method": "POST",
|
|
10
10
|
"input_schema": {
|
|
11
11
|
"type": "object",
|
package/package.json
CHANGED