query-handigraphs-stats

query-handigraphs-stats is a skill for Claude Code, Codex from Handigraphs/handigraphs-stats-api-mcp. It costs 61 tokens per session (523 once invoked), scanned A, original, Apache-2.0.

A skill for finding and querying live MLB or NHL statistics through the Handigraphs Stats API. MLB is Major League Baseball and NHL is the National Hockey League.

In plain words
What is it for?
Use it for player or team stat lookups, matchup comparisons, rankings, filtered searches, paginated results, and explanations of performance tiers or minimum-sample rules.
Why use it?
It helps an agent discover the API's current statistic names, filters, units, and data date instead of guessing them.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present.

Part of the handigraphs-stats-api plugin — 2 skills, 1 MCP server shipped together

Good fit Use it for player or team stat lookups, matchup comparisons, rankings, filtered searches, paginated results, and explanations of performance tiers or minimum-sample rules.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/handigraphs/handigraphs-stats-api-mcp/query-handigraphs-stats
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Handigraphs/handigraphs-stats-api-mcp --skill query-handigraphs-stats
Clone the repo
git clone --depth 1 https://github.com/Handigraphs/handigraphs-stats-api-mcp

Made for: Claude Code, Codex.

Or install handigraphs-stats-api, the plugin that ships this one along with the rest of its 2 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for query-handigraphs-stats

README.md
[![agentmods](https://agentmods.dev/badge/skills/handigraphs/handigraphs-stats-api-mcp/query-handigraphs-stats/github.svg)](https://agentmods.dev/skills/handigraphs/handigraphs-stats-api-mcp/query-handigraphs-stats)
Your own site
<a href="https://agentmods.dev/skills/handigraphs/handigraphs-stats-api-mcp/query-handigraphs-stats"><img src="https://agentmods.dev/badge/skills/handigraphs/handigraphs-stats-api-mcp/query-handigraphs-stats/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for query-handigraphs-stats

Your own site · 80×15
<a href="https://agentmods.dev/skills/handigraphs/handigraphs-stats-api-mcp/query-handigraphs-stats"><img src="https://agentmods.dev/badge/skills/handigraphs/handigraphs-stats-api-mcp/query-handigraphs-stats.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 523 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00061 $0.00523
Opus 5 $0.00030 $0.00262
Sonnet 5 $0.00012 $0.00105
Haiku 4.5 $0.00006 $0.00052

Measured 8d ago against content hash 1985e646093a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

query-handigraphs-stats scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/handigraphs-stats-api/skills/query-handigraphs-stats/SKILL.md · 38 lines

How it starts

The opening of the file, as written. The whole thing — 38 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Query Handigraphs Stats

Use live discovery instead of guessing resource, metric, split, unit, or filter names.

Workflow

  1. Call list_resources when the sport or resource is uncertain.
  2. Call describe_resource before a query unless the exact live metric, split, and filter contract is already present in the current conversation.
  3. Call query_stats with one resource and a focused metric projection. Prefer compact output for comparisons; request standard output when performance tiers or sample qualification matter.
  4. Continue pagination only by passing the returned cursor back to query_stats with the same filters and sort.
  5. State the split, relevant filters, and data_as_of value when summarizing results.

Query rules

  • Use canonical units returned by discovery. A proportion such as 20% is normally passed as 0.20, not 20.
  • Use only eq, ne, gt, gte, lt, or lte for numeric filters, with no more than five filters.
  • Keep one split per query. Do not invent historical dates, archive selectors, custom ranges, or unsupported operators.
  • Prefer stable entity IDs for follow-up lookups when the API returns them.
  • Keep payloads focused. Request rich stats or full metadata only when benchmark details are necessary.

Interpretation

  • Treat performance tiers as metric-specific classifications, not universal rankings.
  • Report low-sample or unqualified rows clearly rather than presenting them as equally reliable.
  • Do not replace a null freshness timestamp, metric value, or tier with an estimate.
  • Separate the API result from any analysis or recommendation derived from it.

Errors and credentials

  • Never ask for or repeat a Stats API key in chat. If the local server is not configured, invoke the bundled setup-handigraphs-stats-api skill and follow its platform-specific masked setup workflow. Do not accept the key as a tool argument or automate entry into the setup window.
  • Do not automatically retry 429 or 503 responses. Report the safe error code and honor any retry guidance returned by the tool.
  • Treat every tool as read-only. Do not imply that the plugin can modify Handigraphs data or account settings.

Read the full file on GitHub · 38 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 38 lines · 61 tokens per session scan A 1985e646093a

Subscribe to this mod's changes

query-handigraphs-stats is a skill published in the GitHub repository Handigraphs/handigraphs-stats-api-mcp (0 stars, last pushed 5d ago), licensed Apache-2.0. It adds 61 tokens to every session and 523 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

opik-diagnose

Surface the Opik traces worth a developer's attention, ranked by signal — Diagnostics issues first, then errors, failed tool calls, latency, regressions, and low online-eval scores. With the Opik MCP connected it lists the project's agentinsightsissue entities, then fills the gaps with list (filters, sort, a time…

comet-ml/opik-mcp · 174 tokens

client-scripts

Write ServiceNow client scripts (onLoad/onChange/onSubmit/onCellEdit) using gform, guser, GlideAjax, field visibility/mandatory toggles, and validation with debounced server calls.

serac-labs/serac · 45 tokens

agoragentic-transaction-assurance

Prepare, evaluate, and reconcile autonomous agent transactions without self-granting payment or owner authority. Use when an agent must bind principal authority, seller terms, payment evidence, execution, delivered outcome, and reconciliation; handle paid retries safely; or prepare an authority request for owner…

rhein1/agoragentic-integrations · 65 tokens

agreement-setup

Set up a bKash tokenized agreement for repeat charges and check its status.

theYahia/WWmcp · 20 tokens

planfix-api

A Planfix CRM integration for managing tasks and contacts. A CRM is a system for organizing customer and business relationships.

theYahia/WWmcp · 16 tokens

maya-shot-export

Pipeline stage — shot-level export: frame ranges, cameras, FBX / Alembic packaging for editorial. Use when packaging shot data for downstream departments. Not for full pipeline publish (maya-pipeline) or scene assembly (maya-scene-assembly).

dcc-mcp/dcc-mcp-maya · 60 tokens