quick connect

works with your client

Connect to any MCP-compatible AI coding environment in under a minute — no CLI required.

MCP Endpoint
https://tl.serviceroute.io/mcp
Claude Desktop
Add to claude_desktop_config.json under mcpServers.
1. Open Settings → Developer → Edit Config
2. Add the SSE server block below
3. Restart Claude Desktop
Cursor
Add via Cursor Settings → MCP → Add New Server.
1. Open Cursor Settings (⌘,)
2. Navigate to the MCP section
3. Add URL transport with the endpoint
VS Code Copilot
Add to workspace .vscode/mcp.json or user settings.
1. Create .vscode/mcp.json in your project
2. Add the server config shown below
3. Reload the VS Code window
Windsurf
Add via Windsurf MCP settings or mcp_config.json.
1. Open Windsurf Settings
2. Navigate to MCP Servers
3. Add server with SSE transport type
// claude_desktop_config.json { "mcpServers": { "tech-lead": { "type": "sse", "url": "https://tl.serviceroute.io/mcp" } } }
// .vscode/mcp.json { "servers": { "tech-lead": { "type": "sse", "url": "https://tl.serviceroute.io/mcp" } } }