> ## Documentation Index
> Fetch the complete documentation index at: https://docs.seekout.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Developer & CLI Tools

> Connect SeekOut MCP through desktop apps, AI coding assistants, and CLI tools using the same server URL and OAuth sign-in.

Use the setup for your client below. Each connection uses your SeekOut account and opens a browser for OAuth sign-in on first use.

## Claude Code

Add the server, then verify the connection. See the [Claude Code documentation](https://code.claude.com/docs/en/mcp).

```bash theme={null}
claude mcp add seekout-search --transport http https://seekout-search-mcp.seekout.io/tools
claude /mcp
```

## Gemini CLI

Gemini CLI supports MCP with automatic OAuth discovery. See the [Gemini CLI documentation](https://google-gemini.github.io/gemini-cli/docs/tools/mcp-server.html).

```bash theme={null}
gemini mcp add -t http seekout-search https://seekout-search-mcp.seekout.io/tools
```

Or add to `~/.gemini/settings.json`:

```json theme={null}
{
  "mcpServers": {
    "seekout-search": {
      "url": "https://seekout-search-mcp.seekout.io/tools"
    }
  }
}
```

## Codex

Add to `~/.codex/config.toml` (or `.codex/config.toml` in your project), then authenticate via OAuth. See the [Codex MCP documentation](https://developers.openai.com/codex/mcp).

```toml theme={null}
[mcp_servers.seekout-search]
url = "https://seekout-search-mcp.seekout.io/tools"

# then:
codex mcp login seekout-search
```

## VS Code

[Install in VS Code](vscode:mcp/install?%7B%22name%22%3A%22seekout-search%22%2C%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fseekout-search-mcp.seekout.io%2Ftools%22%7D)

Click install to open VS Code and add SeekOut automatically, or add the following to `.vscode/mcp.json` in your workspace. See the [VS Code documentation](https://code.visualstudio.com/docs/agent-customization/mcp-servers).

```json theme={null}
{
  "servers": {
    "seekout-search": {
      "type": "http",
      "url": "https://seekout-search-mcp.seekout.io/tools"
    }
  }
}
```

## Cursor

[Install in Cursor](https://cursor.com/install-mcp?name=seekout-search\&config=eyJ1cmwiOiJodHRwczovL3NlZWtvdXQtc2VhcmNoLW1jcC5zZWVrb3V0LmlvL3Rvb2xzIn0%3D)

Click install to open Cursor and add SeekOut automatically, or add the following to `~/.cursor/mcp.json`. See the [Cursor documentation](https://cursor.com/docs/mcp).

```json theme={null}
{
  "mcpServers": {
    "seekout-search": {
      "url": "https://seekout-search-mcp.seekout.io/tools"
    }
  }
}
```

## Desktop apps and other clients

For Claude Desktop and other clients that read an MCP JSON configuration, add the SeekOut server:

```json theme={null}
{
  "mcpServers": {
    "seekout-search": {
      "url": "https://seekout-search-mcp.seekout.io/tools"
    }
  }
}
```

Restart the app after saving the configuration, then sign in with your SeekOut account when prompted.

For clients that ask for connection fields instead of JSON, use:

```text theme={null}
Server URL: https://seekout-search-mcp.seekout.io/tools
Transport:  Streamable HTTP
Auth:       OAuth 2.1 (automatic via MCP protocol)
```
