# Connecting from your MCP client

Server URL: `https://mcp.agency.preprod.favorited.app/mcp`

## Claude — Anthropic

Claude on the web, desktop and mobile — add the agency as a custom connector.

1. Open Claude → Settings → Connectors
1. Choose Add custom connector
1. Name it Favorited Agency and paste https://mcp.agency.preprod.favorited.app/mcp
1. Click Add, then Connect and sign in

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://support.claude.com/en/articles/11175166-getting-started-with-custom-connectors-using-remote-mcp

## Claude Code — Anthropic

The terminal agent — one command adds the server, /mcp signs you in.

```
claude mcp add --transport http favorited-agency https://mcp.agency.preprod.favorited.app/mcp
```

Then run /mcp inside Claude Code to sign in.

Manual setup — `.mcp.json`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "type": "http",
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://docs.claude.com/en/docs/claude-code/mcp

## ChatGPT — OpenAI

ChatGPT connectors in developer mode take a remote MCP server with OAuth.

1. Open ChatGPT → Settings → Apps & Connectors
1. Under Advanced, turn on Developer mode
1. Choose Create, name it Favorited Agency and paste https://mcp.agency.preprod.favorited.app/mcp
1. Pick OAuth and finish — sign in when the browser opens

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://platform.openai.com/docs/mcp

## Codex — OpenAI

Codex CLI and the Codex app read the same config.

```
codex mcp add favorited-agency --url https://mcp.agency.preprod.favorited.app/mcp
```

Then: codex mcp login favorited-agency

Manual setup — `~/.codex/config.toml`:

```
[mcp_servers.favorited-agency]
url = "https://mcp.agency.preprod.favorited.app/mcp"
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://developers.openai.com/codex/mcp

## Cursor — Anysphere

One click installs the server; Cursor opens the sign-in in your browser.

- Add to Cursor: `cursor://anysphere.cursor-deeplink/mcp/install?name=favorited-agency&config=eyJ1cmwiOiJodHRwczovL21jcC5hZ2VuY3kucHJlcHJvZC5mYXZvcml0ZWQuYXBwL21jcCJ9`

Manual setup — `~/.cursor/mcp.json`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://cursor.com/docs/context/mcp

## VS Code — Microsoft · GitHub Copilot

GitHub Copilot in VS Code — one click, or a workspace mcp.json.

- Add to VS Code: `vscode:mcp/install?%7B%22name%22%3A%22favorited-agency%22%2C%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fmcp.agency.preprod.favorited.app%2Fmcp%22%7D`

Manual setup — `.vscode/mcp.json`:

```
{
  "servers": {
    "favorited-agency": {
      "type": "http",
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Or from a terminal: code --add-mcp '{"name":"favorited-agency","type":"http","url":"https://mcp.agency.preprod.favorited.app/mcp"}'

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://code.visualstudio.com/docs/copilot/customization/mcp-servers

## GitHub Copilot CLI — GitHub

Copilot in the terminal — add the server with /mcp add.

1. Inside Copilot CLI run /mcp add
1. Name: favorited-agency · Type: http · URL: https://mcp.agency.preprod.favorited.app/mcp
1. Approve the sign-in when the browser opens

Manual setup — `~/.copilot/mcp-config.json`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "type": "http",
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://docs.github.com/en/copilot/how-tos/use-copilot-agents/use-copilot-cli

## Windsurf — Codeium

Cascade reads MCP servers from Windsurf settings.

1. Windsurf Settings → Cascade → MCP servers
1. Choose Add custom server and paste the snippet below

Manual setup — `~/.codeium/windsurf/mcp_config.json`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "serverUrl": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://docs.windsurf.com/windsurf/cascade/mcp

## Gemini CLI — Google

Gemini in the terminal — add, then authenticate with /mcp auth.

```
gemini mcp add --transport http favorited-agency https://mcp.agency.preprod.favorited.app/mcp
```

Then inside gemini: /mcp auth favorited-agency

Manual setup — `~/.gemini/settings.json`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "httpUrl": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://geminicli.com/docs/tools/mcp-server/

## Amp — Sourcegraph

Amp starts the sign-in in your browser the next time it launches.

```
amp mcp add favorited-agency https://mcp.agency.preprod.favorited.app/mcp
```

Manual setup — `~/.config/amp/settings.json (or .amp/settings.json in a project)`:

```
{
  "amp.mcpServers": {
    "favorited-agency": {
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Start amp after adding the server; the OAuth flow opens in your browser.

Docs: https://ampcode.com/docs/customize/mcp

## Kiro — AWS

Kiro reads MCP servers from a workspace or user config.

1. Kiro panel → MCP Servers → Add
1. Paste the snippet below

Manual setup — `.kiro/settings/mcp.json`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://kiro.dev/docs/mcp/

## Zed — Zed Industries

Zed calls them context servers; a remote one takes a URL.

1. Agent panel → Settings → Add Custom Server
1. Paste the snippet below

Manual setup — `settings.json`:

```
{
  "context_servers": {
    "favorited-agency": {
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://zed.dev/docs/ai/mcp

## Warp — Warp

The Warp terminal agent takes MCP servers as JSON in settings.

1. Settings → AI → MCP servers → + Add
1. Paste the snippet below

Manual setup — `Warp → Settings → AI → MCP servers`:

```
{
  "favorited-agency": {
    "url": "https://mcp.agency.preprod.favorited.app/mcp"
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://docs.warp.dev/knowledge-and-collaboration/mcp

## Google Antigravity — Google

Google's agent-first IDE manages MCP servers from the agent panel.

1. Agent panel → ⋯ → MCP Servers → Manage
1. Add a server with the snippet below

Manual setup — `mcp_config.json`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "serverUrl": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://antigravity.google/docs/mcp

## JetBrains AI Assistant — JetBrains

AI Assistant and Junie share one MCP settings page.

1. Settings → Tools → AI Assistant → Model Context Protocol (MCP) → +
1. Choose JSON and paste the snippet below

Manual setup — `AI Assistant → MCP → + → As JSON`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://www.jetbrains.com/help/ai-assistant/mcp.html

## Cline — Cline

The Cline extension adds remote servers by name and URL.

1. MCP Servers → Remote Servers
1. Name: favorited-agency · URL: https://mcp.agency.preprod.favorited.app/mcp

Manual setup — `cline_mcp_settings.json`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "type": "streamableHttp",
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://docs.cline.bot/mcp/connecting-to-a-remote-server

## Goose — Block

Goose calls servers extensions; the desktop app installs from a link.

- Add to Goose: `goose://extension?type=streamable_http&url=https%3A%2F%2Fmcp.agency.preprod.favorited.app%2Fmcp&id=favorited-agency&name=Favorited%20Agency`

Manual setup — `goose configure`:

```
goose configure → Add Extension → Remote Extension (Streaming HTTP)
Name: Favorited Agency
URL: https://mcp.agency.preprod.favorited.app/mcp
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://block.github.io/goose/docs/getting-started/using-extensions

## OpenCode — SST

Add the server to opencode.json as a remote MCP.

1. Add the snippet below to opencode.json

Manual setup — `opencode.json`:

```
{
  "mcp": {
    "favorited-agency": {
      "type": "remote",
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://opencode.ai/docs/mcp-servers/

## Xcode — Apple

Xcode 27 (beta) takes MCP servers under Intelligence.

1. Settings → Intelligence → MCP servers → +
1. Paste https://mcp.agency.preprod.favorited.app/mcp and sign in

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://developer.apple.com/documentation/xcode/intelligence

## Factory (droid) — Factory

The droid CLI adds HTTP servers with one command.

```
droid mcp add favorited-agency --type http --url https://mcp.agency.preprod.favorited.app/mcp
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://docs.factory.ai/cli/configuration/mcp

## Amazon Q Developer — AWS

Amazon Q reads MCP servers from its config file.

1. Q panel → MCP → Add
1. Paste the snippet below

Manual setup — `~/.aws/amazonq/mcp.json`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/qdev-mcp.html

## Devin — Cognition

Devin connects to MCP servers from its settings.

1. Settings → MCP → Add server
1. Name: favorited-agency · URL: https://mcp.agency.preprod.favorited.app/mcp

Manual setup — `Devin → Settings → MCP`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://docs.devin.ai/work-with-devin/mcp

## Replit — Replit

Replit Agent takes MCP servers per workspace.

1. Agent → Tools → MCP → Add
1. URL: https://mcp.agency.preprod.favorited.app/mcp

Manual setup — `Replit → Agent → Tools → MCP`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://docs.replit.com/replitai/mcp

## Augment — Augment Code

Augment adds MCP servers from its settings panel.

1. Augment settings → MCP → +
1. Paste the snippet below

Manual setup — `Augment → Settings → MCP`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://docs.augmentcode.com/setup-augment/mcp

## OpenHands — All Hands AI

OpenHands takes MCP servers in its config.

1. Settings → MCP → Add
1. Paste the snippet below

Manual setup — `config.toml / Settings → MCP`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://docs.all-hands.dev/usage/mcp

## Rovo Studio — Atlassian

Rovo agents connect to MCP servers from Rovo Studio.

1. Rovo Studio → Connections → Add MCP server
1. URL: https://mcp.agency.preprod.favorited.app/mcp

Manual setup — `Rovo Studio → Connections`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://support.atlassian.com/rovo/docs/rovo-studio-mcp/

## Android Studio — Google

Gemini in Android Studio reads MCP servers from a config file.

1. Settings → Tools → Gemini → MCP
1. Paste the snippet below

Manual setup — `mcp.json`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://developer.android.com/studio/gemini/mcp

## Grok — xAI

Grok connects to remote MCP servers as connectors.

1. Grok → Settings → Connectors → Add
1. URL: https://mcp.agency.preprod.favorited.app/mcp

Your browser opens; sign in with your Favorited account and pick the agency.

Docs: https://docs.x.ai/docs/guides/mcp

## Any other client

Your client needs Streamable HTTP and OAuth 2.1 with dynamic registration or Client ID Metadata Documents. Give it this URL:

1. https://mcp.agency.preprod.favorited.app/mcp

Manual setup — `Most clients accept this shape`:

```
{
  "mcpServers": {
    "favorited-agency": {
      "url": "https://mcp.agency.preprod.favorited.app/mcp"
    }
  }
}
```

Sign-in follows the OAuth flow described at https://mcp.agency.preprod.favorited.app/auth.md.

Docs: https://mcp.agency.preprod.favorited.app/docs