@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 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 — model the rest of a match from the current score and time, no upstream feed required.
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) Live sports win probability API / in-game win probability calculator / NFL NBA MLB NHL soccer win chance from current score and time remaining. Models the rest of the game as a random walk on the score margin (final margin = current margin + a normal increment whose mean is the pregame edge accrued over the time left and whose std dev is the sport's final-margin volatility scaled by sqrt of time remaining), then returns each team's win probability as the normal CDF of the projected final margin, plus projected final margin, the 1-sigma swing still possible, and human-readable drivers. Pure deterministic compute, no upstream API. Built-in scoring volatility for NFL/NCAAF/NBA/NCAAB/WNBA/MLB/NHL/soccer; override scoring_std for any sport. Statistical estimate, not betting advice. |
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.0 · **License:** MIT
74
+ **Version:** 0.1.2 · **License:** MIT
@@ -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.0";
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) Live sports win probability API / in-game win probability calculator / NFL NBA MLB NHL soccer win chance from current score and time remaining. Models the rest of the game as a random walk on the score margin (final margin = current margin + a normal increment whose mean is the pregame edge accrued over the time left and whose std dev is the sport's final-margin volatility scaled by sqrt of time remaining), then returns each team's win probability as the normal CDF of the projected final margin, plus projected final margin, the 1-sigma swing still possible, and human-readable drivers. Pure deterministic compute, no upstream API. Built-in scoring volatility for NFL/NCAAF/NBA/NCAAB/WNBA/MLB/NHL/soccer; override scoring_std for any sport. Statistical estimate, not betting advice.",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentutility/mcp-statline",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "MCP server for the @agentutility statline cluster — pay-per-call x402 tools, no API keys, USDC on Base.",
5
5
  "license": "MIT",
6
6
  "type": "module",