baseball
Fetch MLB game schedules, live game status, box scores, player search, and season statistics via the MLB Stats API. Use when the user asks about baseball games, scores, who is playing today, game results, live updates, pitching matchups, MLB schedule information, player lookups, or player stats.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/khaney64/baseballBaseball — MLB Game Tracker
Fetch real-time MLB game schedules, live game status, box scores, player search, and season statistics via the MLB Stats API.
Quick Start
# List today's games
python scripts/baseball.py games
# Live game status for the Phillies
python scripts/baseball.py live PHI
# Box score for a specific game
python scripts/baseball.py score 718415
# Box score for last Tuesday's Phillies game
python scripts/baseball.py score PHI --date 02/15/2026
# Search for a player
python scripts/baseball.py player Judge
# Search with team filter
python scripts/baseball.py player Wheeler --team PHI
# Player season stats by ID
python scripts/baseball.py stats 592450
# Player season stats by name
python scripts/baseball.py stats Aaron Judge --season 2025
Usage
List Teams
# Show all team abbreviations
python scripts/baseball.py teams
List Games
# Today's games
python scripts/baseball.py games
# Games on a specific date
python scripts/baseball.py games --date 09/15/2025
# Next 7 days of games
python scripts/baseball.py games --days 7
# Upcoming week for a specific team
python scripts/baseball.py games --team PHI --days 7
# Filter by team
python scripts/baseball.py games --team PHI
# JSON output
python scripts/baseball.py games --format json
Live Game Status
Show live count, runners, batter/pitcher matchup, and line score for an in-progress game.
# By team abbreviation (finds today's game)
python scripts/baseball.py live PHI
# By game PK
python scripts/baseball.py live 718415
# Game status from a specific date
python scripts/baseball.py live NYY --date 02/10/2026
# JSON output
python scripts/baseball.py live PHI --format json
Box Score
Show the line score for any game (in-progress or final).
# By team abbreviation (today's game)
python scripts/baseball.py score PHI
# By game PK (works for any game, past or present)
python scripts/baseball.py score 718415
# By team abbreviation for a past date
python scripts/baseball.py score PHI --date 02/15/2026
# JSON output
python scripts/baseball.py score PHI --format json
Search Players
# Search by last name
python scripts/baseball.py player Judge
# Search by full name
python scripts/baseball.py player Aaron Judge
# Filter by team
python scripts/baseball.py player Wheeler --team PHI
# JSON output
python scripts/baseball.py player Judge --format json
Player Stats
# By player ID (from player search results)
python scripts/baseball.py stats 592450
# By player name (auto-resolves if unique match)
python scripts/baseball.py stats Aaron Judge
# Specific season
python scripts/baseball.py stats Aaron Judge --season 2024
# JSON output
python scripts/baseball.py stats 592450 --format json
Output Format
Text (Default)
games:
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-khaney64-baseball": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
session-cost
Analyze OpenClaw session logs to report token usage, costs, and performance metrics grouped by model. Use when the user asks about API spending, token usage, session costs, or wants a usage summary.
leak-check
Scan session logs for leaked credentials. Checks JSONL session files against known credential patterns and reports which AI provider received the data.
discogs-sync
Add and remove albums from a Discogs wantlist or collection by artist and album name, master ID, or release ID. Search marketplace pricing for vinyl, CD, and other formats. List wantlist and collection contents. Use when the user asks to add or remove a record from their Discogs wantlist or collection, check what's on their wantlist, look up marketplace prices, or find what a record is selling for. Also supports bulk operations via CSV/JSON file input.
minimax-usage
Check MiniMax coding plan usage/credits remaining. Requires MINIMAX_API_KEY environment variable.
quodd
Fetch real-time stock quotes via Quodd API. Get current prices, daily high/low, and after-hours data for US equities. Use when the user asks for stock prices, quotes, market data, or ticker information.