Developer & CLI Tools
For developers and power users connecting SeekOut MCP through AI coding assistants and CLI tools. All use the same server URL and OAuth — your client opens a browser to sign in with your SeekOut account on first use.
Claude Code#
Add the server, then verify the connection. See the Claude Code documentation.
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.
gemini mcp add -t http seekout-search https://seekout-search-mcp.seekout.io/tools
Or add to ~/.gemini/settings.json:
{
"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.
[mcp_servers.seekout-search]
url = "https://seekout-search-mcp.seekout.io/tools"
# then:
codex mcp login seekout-search
VS Code#
Install in VS CodeClick 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.
{
"servers": {
"seekout-search": {
"type": "http",
"url": "https://seekout-search-mcp.seekout.io/tools"
}
}
}
Cursor#
Install in CursorClick install to open Cursor and add SeekOut automatically, or add the following to ~/.cursor/mcp.json. See the Cursor documentation.
{
"mcpServers": {
"seekout-search": {
"url": "https://seekout-search-mcp.seekout.io/tools"
}
}
}
Other clients#
MCP is an open protocol supported by many clients. Use the server URL with "OAuth" as the connection mechanism; your client opens a browser to sign in on first use.
Server URL: https://seekout-search-mcp.seekout.io/tools
Transport: Streamable HTTP
Auth: OAuth 2.1 (automatic via MCP protocol)