MCP Server
Maintained
MIT
Strava MCP Bridge MCP Server
io.github.millerchou/strava-mcp-bridge
What is the Strava MCP Bridge MCP server?
Use Strava's official MCP from Codex and other local stdio clients without a developer app.
How to install Strava MCP Bridge
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"strava-mcp-bridge": {
"command": "npx",
"args": [
"-y",
"strava-mcp-bridge"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"strava-mcp-bridge": {
"command": "npx",
"args": [
"-y",
"strava-mcp-bridge"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"strava-mcp-bridge": {
"command": "npx",
"args": [
"-y",
"strava-mcp-bridge"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"strava-mcp-bridge": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"strava-mcp-bridge"
]
}
}
}Claude Code
claude mcp add strava-mcp-bridge -- npx -y strava-mcp-bridgeRelated MCP servers
io.github.millerchou/rocketchat-mcp
Maintained
MCP server for Rocket.Chat — messages, DMs, search, files, and channels over stdio
1
View repository →Python
MIT