Baseball MCP
An MCP server for retrieving Major League Baseball (MLB) game results, schedules, and specific game details using the mlb-statsapi library.
baseball-mcp: An MLB Stats API Wrapper for MCP
This project provides an MCP (Model Context Protocol) that acts as a wrapper for the MLB Stats API. It allows you to easily access and process various MLB data points, including schedules, game results, and team information. This server is designed for efficient data retrieval and processing within an MCP framework.
Demo Videos
Here are a couple of demo videos showcasing the capabilities of mcp_mlb_statsapi:
- Demo 1: MCP MLB Stats API - Quick Overview
- Demo 2: MCP MLB Stats API - 輸入中文也可以
Features
- Game Schedules: Retrieve MLB game schedules for specified date ranges, optionally filtering by team.
- Game Results: Fetch daily game results, including scores, winning/losing teams, and winning pitcher.
- Team Results: Get detailed results for a specific team's most recent game, including scoring plays and highlights.
- Player Lookup: Look up player IDs using last name, first name, or a combination of both. Supports fuzzy matching.
Installation
Prerequisites
- Python 3.10 or newer
- uv package manager:
If you're on Mac, please install uv as
brew install uv
On Windows
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
Otherwise installation instructions are on their website: Install uv
Install via PyPI
The mcp_mlb_statsapi package is available on PyPI and can be installed using pip:
pip install mcp_mlb_statsapi
Install via Github
or you can clone this repo, run it with soruce code.
uv venv
source .venv/bin/activate
uv pip install -r requirements.txt
Claude for Desktop Integration
Go to Claude > Settings > Developer > Edit Config > claude_desktop_config.json to include the following:
{
"mcpServers": {
"mcp_mlb_statsapi": {
"command": "{YOUR_PYTHON_EXECUTABLE_PATH}/python",
"args": ["-m",
"mcp_mlb_statsapi"]
}
}
}
If you install it via source code
{
"mcpServers": {
"mcp_mlb_statsapi": {
"command": "{YOUR_UV_EXECUTABLE_PATH}/uv",
"args": [
"--directory",
"{YOUR_PROJECT_PATH}/src/mcp_mlb_statsapi",
"run",
"mcp_mlb_statsapi"
]
}
}
}
Contributing
Contributions are welcome! Please open an issue or submit a pull request.
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
References
This project utilizes the following external libraries and resources:
- MLB-StatsAPI: https://github.com/toddrob99/MLB-StatsAPI - A Python library providing access to the MLB Stats API. This project relies heavily on
mlb-statsapifor data retrieval.
Related Servers
SignalK MCP Server
Provides AI agents with read-only access to SignalK marine data systems, enabling queries of vessel navigation data, AIS targets, and system alarms.
Crypto Price & Market Analysis (JJ Fork)
Provides real-time cryptocurrency price data, market analysis, and historical trends using the CoinCap API.
Fibrous MCP Server
A server for Fibrous Finance, a DeFi aggregation platform.
MCP.science
A collection of open-source MCP servers designed for scientific research applications.
mcp-dice
Rolls dice using standard notation (e.g., 1d20) and returns individual rolls and their sum.
OpenEnded Philosophy MCP Server with NARS Integration
A philosophical reasoning system combining OpenEnded Philosophy with the Non-Axiomatic Reasoning System (NARS) for advanced analysis and synthesis.
MediaSage
Tracks movies, books, and TV shows to provide intelligent recommendations based on your preferences.
Arithmetic MCP Server
Performs basic arithmetic operations such as addition, subtraction, multiplication, and division.
RuneScape
Interact with RuneScape (RS) and Old School RuneScape (OSRS) data, including item prices and player hiscores.
Pokemon Gen3 Calculator
A damage and status calculator for Pokemon Generation 3.


