PluginBench
MCP Server

The Blue Alliance MCP Server

io.github.withinfocus/tba

What is the The Blue Alliance MCP server?

The Blue Alliance MCP Server

How to install The Blue Alliance

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • TBA_API_KEY
    required
    secret

    The Blue Alliance API key

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "tba": {
      "command": "npx",
      "args": [
        "-y",
        "@withinfocus/tba-mcp-server"
      ],
      "env": {
        "TBA_API_KEY": "<YOUR_TBA_API_KEY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "tba": {
      "command": "npx",
      "args": [
        "-y",
        "@withinfocus/tba-mcp-server"
      ],
      "env": {
        "TBA_API_KEY": "<YOUR_TBA_API_KEY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "tba": {
      "command": "npx",
      "args": [
        "-y",
        "@withinfocus/tba-mcp-server"
      ],
      "env": {
        "TBA_API_KEY": "<YOUR_TBA_API_KEY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "tba": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@withinfocus/tba-mcp-server"
      ],
      "env": {
        "TBA_API_KEY": "<YOUR_TBA_API_KEY>"
      }
    }
  }
}
Claude Code
claude mcp add tba --env TBA_API_KEY=<YOUR_TBA_API_KEY> -- npx -y @withinfocus/tba-mcp-server

Related MCP servers

Statbotics MCP Server

View repository →