diff --git a/docs/cli.md b/docs/cli.md index f51f046..d36651f 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -321,7 +321,7 @@ updates a stale fortrabbit URL while leaving all other MCP servers alone. `remove` lists the affected agent configuration files and asks for confirmation; pass `--yes` only for intentional unattended removal. -The remote endpoint is `https://api.fortrabbit.com/mcp`. Claude Code stores its +The remote endpoint is `https://mcp.fortrabbit.com/mcp`. Claude Code stores its user-scoped entry in `~/.claude.json`; Codex stores it in `~/.codex/config.toml`. diff --git a/internal/agentmcp/service.go b/internal/agentmcp/service.go index f5eeb27..21dec44 100644 --- a/internal/agentmcp/service.go +++ b/internal/agentmcp/service.go @@ -15,7 +15,7 @@ import ( const ( ServerName = "fortrabbit" - ServerURL = "https://api.fortrabbit.com/mcp" + ServerURL = "https://mcp.fortrabbit.com/mcp" CodexClientID = "https://api.fortrabbit.com/.well-known/oauth-client/codex" )