@agentutility/mcp-statline 0.1.1 → 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 +2 -2
- package/dist/tools.generated.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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