What is the SF Muni Real-Time Transit MCP server?
Real-time SF Muni departures, routes, alerts, vehicle positions, and schedules.
How to install SF Muni Real-Time Transit
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Environment / auth
x-api-key-511
Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"muni-mcp": {
"url": "https://muni-mcp.srivastsh.workers.dev/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"muni-mcp": {
"serverUrl": "https://muni-mcp.srivastsh.workers.dev/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"muni-mcp": {
"type": "http",
"url": "https://muni-mcp.srivastsh.workers.dev/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"muni-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://muni-mcp.srivastsh.workers.dev/mcp"
]
}
}
}Claude Code
claude mcp add --transport http muni-mcp https://muni-mcp.srivastsh.workers.dev/mcpRelated MCP servers
Real-time BART departures, trip planning, fares, stations, and advisories.
View repository →