{
"mcpServers": {
"boatrace-open-api-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for Boatrace Open API
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 101 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Boatrace Open Api Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server providing access to official Boatrace race data through three core tools.
This MCP server enables Claude and other AI models to access Boatrace race information through the official Boatrace Open API. Three tools provide access to:
git clone https://github.com/boatrace/open-api-mcp-server.git
cd boatrace-open-api-mcp-server
go mod download
make build
The binary will be created at bin/boatrace-mcp.
./bin/boatrace-mcp
The server will start listening for MCP calls.
programs(year="2025", date="20251222")
Returns complete race program for the specified date including:
results(year="2025", date="20251220")
Returns race results for completed races including:
previews(year="2025", date="20251222")
Returns pre-race analysis and information including:
claude mcp addThe fastest way to install this MCP server in Claude Code:
Build the server first:
cd /path/to/boatrace-open-api-mcp-server
make build
Add to Claude Code using claude mcp add command:
For local development (project scope):
claude mcp add --scope project --transport stdio boatrace-api -- \
/path/to/boatrace-open-api-mcp-server/bin/boatrace-mcp
For user-wide installation (all projects):
claude mcp add --scope user --transport stdio boatrace-api -- \
/path/to/boatrace-open-api-mcp-server/bin/boatrace-mcp
Verify installation:
# List all installed MCP servers
claude mcp list
# Get details about boatrace-api server
claude mcp get boatrace-api
Use in Claude Code: The tools will be automatically available:
programs(year="2025", date="20251222") - Get race programsresults(year="2025", date="20251220") - Get race resultspreviews(year="2025", date="20251222") - Get race previewsIf you prefer manual configuration, add to .mcp.json in your project:
{
"mcpServers": {
"boatrace-api": {
"type": "stdio",
"command": "/path/to/boatrace-open-api-mcp-server/bin/boatrace-mcp"
}
}
}
Or add to ~/.claude.json for user-wide configuration:
{
"mcpServers": {
"boatrace-api": {
"type": "stdio",
"command": "/path/to/boatrace-open-api-mcp-server/bin/boatrace-mcp"
}
}
}
Server not appearing in Claude Code?
Check installation:
claude mcp list
Verify binary exists and is executable:
ls -la /path/to/boatrace-open-api-mcp-server/bin/boatrace-mcp
chmod +x /path/to/boatrace-open-api-mcp-server/bin/boatrace-mcp
Test binary directly:
/path/to/boatrace-open-api-mcp-server/bin/boatrace-mcp
Reload Claude Code or run /mcp command to refresh MCP server list
To use this MCP server with GitHub Copilot (when MCP support is available):