C

Claudinho

arturogarrido
๐Ÿƒ Sports๐ŸŸข Verified Active
0 Views
0 Installs

๐Ÿ“‡ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - Live scores, fixtures, standings, and read-only prediction-market signals for the 2026 World Cup. No API keys.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "arturogarrido-claudinho": {
      "command": "npx",
      "args": [
        "-y",
        "arturogarrido-claudinho"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

Claudinho โšฝ

CI npm: @claudinho/cli npm: @claudinho/mcp npm downloads cursor.directory smithery badge Glama: A node license: MIT #VibingLaVidaLoca GitHub stars

Live scores for the 2026 men's football tournament โ€” in your terminal, your Claude Code / Cursor CLI statusline, and any MCP client. No API key, no signup; all 104 fixtures ship bundled, so the schedule works offline.

A Claude Code statusline flipping to a live World Cup score โ€” South Korea 2โ€“1 Czechia โ€” while tests run in the terminal

npx @claudinho/cli today      # try it in 10 seconds โ€” no install, no key
npx @claudinho/cli live       # what's on right now (during match windows)

โญ Like it? Star the repo โ€” a fan project's only scoreboard is its stars. (claudinho star shows you how anytime.)

While matches are live, your Claude Code or Cursor CLI statusline reads:

โšฝ ๐Ÿ‡ณ๐Ÿ‡ด 1โ€“1 ๐Ÿ‡ซ๐Ÿ‡ท 87' ยท ๐Ÿ‡ธ๐Ÿ‡ณ 1โ€“2 ๐Ÿ‡ฎ๐Ÿ‡ถ 86'

And claudinho share prints a card made for the group chat:

Group A ยท standings

1. ๐Ÿ‡ฒ๐Ÿ‡ฝ MEX  9 pts ยท 3-0-0 ยท +6
2. ๐Ÿ‡ฟ๐Ÿ‡ฆ RSA  4 pts ยท 1-1-1 ยท -1
3. ๐Ÿ‡ฐ๐Ÿ‡ท KOR  3 pts ยท 1-0-2 ยท -1
4. ๐Ÿ‡จ๐Ÿ‡ฟ CZE  1 pts ยท 0-1-2 ยท -4

Live data: ESPN
#VibingLaVidaLoca ยท Independent fan project ยท not affiliated with FIFA or Anthropic.
Try it: npx @claudinho/cli table A

โš ๏ธ Not affiliated with, endorsed by, or connected to FIFA or Anthropic. Claudinho is an independent, open-source fan project. It displays factual match data (scores, fixtures, standings) and uses emoji flags only โ€” no logos, emblems, kits, broadcast footage, or player likenesses.

Install

Just the CLI

npm i -g @claudinho/cli
claudinho today
claudinho next MEX --tz America/Mexico_City --lang es

Cursor CLI โ€” statusline + MCP

One command wires the live-score statusline and prints the MCP config to paste:

npm i -g @claudinho/cli
claudinho init cursor          # statusline โ†’ ~/.cursor/cli-config.json (+ the MCP paste)

A live World Cup score in a Cursor CLI statusline โ€” Uzbekistan 0โ€“1 Colombia, 42' โ€” with a model and context line below it

Restart your agent session to see it. Prefer to paste it yourself? claudinho init cursor --print emits the snippets, or copy them straight from here:

Statusline โ€” ~/.cursor/cli-config.json:

{
  "statusLine": {
    "type": "command",
    "command": "claudinho prompt",
    "padding": 0,
    "updateIntervalMs": 1000,
    "timeoutMs": 1500
  }
}

MCP tools โ€” ~/.cursor/mcp.json (global) or a project .cursor/mcp.json:

{ "mcpServers": { "claudinho": { "command": "npx", "args": ["-y", "@claudinho/mcp"] } } }

Optional env โ€” a model + context line below the score, or scope to your team:

export CLAUDINHO_CURSOR_META=auto   # model + context % line under the score (recommended)
export CLAUDINHO_TEAM=MEX           # show only your team's match
export CLAUDINHO_FLAGS=off          # 3-letter codes instead of flag emoji (already automatic in Warp)
export CLAUDINHO_DEBUG=1            # print data-provider failure diagnostics to stderr

Note: Cursor's beforeSubmitPrompt hook doesn't yet reliably inject context into the model, so the score-aware hook stays Claude Code-only for now โ€” the statusline and MCP server work great in Cursor.

Claude Code โ€” statusline, score-aware hook, MCP

npm i -g @claudinho/cli
claudinho init claude          # statusline + live-score hook, then the MCP one-liner

init claude backs up ~/.claude/settings.json first and is idempotent. Prefer the pieces ร  la carte? Run init-statusline, init-hook, and:

claude mcp add claudinho -- npx -y @claudinho/mcp

Restart Claude Code to activate.

Monorepo / local dev? The init cursor / init claude aliases wire the global claudinho. To point a statusline or hook at a local build, use the granular commands with --command, e.g. claudinho init-cursor-statusline --command "node ./packages/cli/dist/index.js prompt" (and init-statusline / init-hook for Claude Code).

Other MCP clients โ€” Codex, Claude Desktop, Windsurf, Zed, VS Code

codex mcp add claudinho -- npx -y @claudinho/mcp    # Codex CLI

Everything else takes the standard stdio config:

{ "mcpServers": { "claudinho": { "command": "npx", "args": ["-y", "@claudinho/mcp"] } } }

Then just ask, mid-task โ€” the agent calls the MCP server and answers with the score:

An AI coding agent asked 'did Germany get through?' mid-task โ€” it calls the Claudinho MCP server and answers with the result: Germany 1(3)โ€“1(4) Paraguay, FT (Paraguay won on penalties)

Surfaces

  • CLI โ€” today, live, next MEX, table, match <id>, bracket, markets, share, team (name โ†’ code, e.g. team "DR Congo") (plus vibe ๐Ÿ˜Ž and star โญ). --json on everything; TZ-aware via --tz.
  • Live statusline โ€” Claude Code & Cursor CLI โ€” every live score inline; reads a local micro-cache, never blocks on the network. One command per agent: claudinho init claude / claudinho init cursor (also tmux & Starship via claudinho prompt).
  • Score-aware hook (Claude Code) โ€” a UserPromptSubmit hook that drops the live score into the model's context during matches; zero tokens off-match. (Cursor parity pending โ€” its hook can't reliably inject context yet.)
  • MCP server โ€” 9 read-only tools (get_today, get_live, get_match, get_next_fixture, get_standings, get_bracket, get_market_signal, get_share_snippet, get_team) plus my_team / tournament_today prompts.
  • Prediction-market signals โ€” a read-only "who's favored" line (market-implied percentages, Source: Polymarket), shown only when a reliable market exists. Informational only โ€” not betting advice. Opt out: --no-markets / CLAUDINHO_MARKETS=off.
  • Shareable cards โ€” claudinho share next MEX --copy puts a plain-text match card on your clipboard; claudinho share table A does the same for a group's live standings; claudinho share bracket for the knockout tree.

Speaks en / es / pt / fr, with optional localized commentary flair (ยกGOOOOL!) โ€” dial it down with --flavor subtle|off.

Planned (not shipped yet): a desktop notifier and an AI pundit with a public accuracy scorecard.

FAQ

Do I need an API key or account? No. Nothing to sign up for; npx and done.

Does it work offline? The bundled data does โ€” the full schedule, group fixtures, and the knockout bracket structure (all 104 fixtures ship bundled, no key). Anything live hits the network: scores, group standings, and a team's resolved knockout opponent (next once the draw fills in).

Where does the data come from? Live scores from ESPN's public scoreboard (attributed in output as Live data: ESPN); market signals from Polymarket public data. Rate limits respected.

Is the market line betting advice? No. It's read-only, informational-only market data with attribution โ€” no trading, no links โ€” and it never appears on the statusline or hook.

Why no crests, kits, or player photos? Legal-clean by design: facts and emoji flags only.

Flags show as boxed letters (CH, BA)? Some terminals โ€” notably Warp โ€” don't compose the regional-indicator pairs into flag glyphs, so ๐Ÿ‡จ๐Ÿ‡ญ renders as a boxed CH. claudinho auto-detects Warp and drops the flags: 3-letter codes on the statusline (MEX 1โ€“0 RSA 67') and plain team names in the hook, today / live / table, and next. Force it anywhere with CLAUDINHO_FLAGS=off, or keep flags with CLAUDINHO_FLAGS=on.

Windows? Works, but flag emoji rendering varies by terminal โ€” best on macOS/Linux. See the flags note above; CLAUDINHO_FLAGS=off gives clean codes on any terminal that can't render them.

Why star?

Claudinho is a solo, $0, organic fan project โ€” a GitHub star is the only signal that it's worth maintaining, and the nudge to keep shipping through the final. A star also:

  • surfaces it for other devs hunting live scores during the tournament,
  • puts new releases in your feed โ€” a desktop notifier, an AI pundit, and other tournaments are on the roadmap,
  • takes one click โ†’ โญ star Claudinho.

New here? CONTRIBUTING.md has the layout, the dev loop, and good first issues.

Privacy Policy

Claudinho collects no personal data โ€” no accounts, no telemetry, no analytics, no tracking. There is no Claudinho server. To show live results it makes read-only requests to public sports-data services (ESPN for scores/standings; Polymarket for informational-only market signals) with no account or personal data attached, and keeps a small cache in your local cache directory (~/.cache/claudinho). Full details: PRIVACY.md.

License

MIT ยฉ 2026 Arturo Garrido. All three packages publish with npm provenance via OIDC trusted publishing.


Built while watching the games. #VibingLaVidaLoca โšฝ

Related MCP Servers

G
Garmin Local Mcp

๐Ÿ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - Local-first Garmin data warehouse: incremental sync into SQLite you own, with server-side trends, lag-aware correlations, personal baselines, and anomaly detection returned as compact tables. Analysis keeps working offline when Garmin's API breaks, and a zero-auth FIT-bundle import fills gaps with no login at all.

๐Ÿƒ Sports0 views
S
Sportscore Mcp

๐Ÿ“‡ โ˜๏ธ ๐ŸŽ ๐ŸชŸ ๐Ÿง - Live scores, standings, top scorers, player stats, and knockout brackets for football, basketball, cricket, and tennis. Free public API, no key required.

๐Ÿƒ Sports0 views
C
Chessceo Mcp

๐Ÿ“‡ โ˜๏ธ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - Chess data via chess.ceo โ€” 11.7M+ games and 1.5M FIDE player profiles. 8 tools: player search, per-player opening preparation (opening tree with frequency + win rate), position statistics from the full game database, head-to-head records, and live tournament broadcasts. No API key. Remote server at https://mcp.chess.ceo/mcp or local via npx -y @chessceo/mcp.

๐Ÿƒ Sports0 views
S
Sports Mcp Server

๐ŸŽ๏ธ โ˜๏ธ โ€“ Access structured sports data via the Cloudbet API. Query upcoming events, live odds, stake limits, and market info across soccer, basketball, tennis, esports, and more.

๐Ÿƒ Sports0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Active

Recent health check succeeded.

Last checked: 7/28/2026, 4:50:49 PM

Unclaimed listing (imported or pending owner verification). Claim it โ†’
โ˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.