mlb_mcp_server

ian7525/mlb_mcp_server

3.1

If you are the rightful owner of mlb_mcp_server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

The MLB MCP Server is a TypeScript project utilizing the Model Context Protocol SDK to provide a server for managing and interacting with model contexts.

mlb_mcp_server

This is a TypeScript project using the Model Context Protocol SDK.

Installation

To install the dependencies, run:

npm install

Build

To build the project, run:

npm run build

This will compile the TypeScript files and output them to the build directory.

Usage

To run the server, execute the following command after building the project:

node build/index.js

How to add into MCP setting

For Cline: MCP Servers -> Installed -> Configure MCP Servers

{
  "mcpServers": {
    "mlb": {
      "command": "node",
      "args": ["/yourlocalpath/mlb_mcp_server/build/index.js"]
    }
  }
}

For Claude Desktop: File -> Settings -> Developer -> Edit Config -> claude_desktop_config.json

{
  "mcpServers": {
	  "mlb": {
      "command": "node",
      "args": ["/yourlocalpath/mlb_mcp_server/build/index.js"]
    }
  }
}

Reference

https://modelcontextprotocol.io/quickstart/server https://medium.com/@ai.layology.lab/n8n-google%E6%97%A5%E6%9B%86%E8%87%AA%E5%8B%95%E8%BF%BD%E8%B9%A4mlb%E6%AF%94%E8%B3%BD%E7%B5%90%E6%9E%9C-ea0beba3d0a1