Setup
Connect SnitchFeed to your AI client via MCP.
The SnitchFeed MCP server uses OAuth for authorization. The first time you connect a client, it will open your browser to a SnitchFeed login page. After you grant access, the client stores a token and reconnects automatically going forward.
Server URL: https://api.snitchfeed.com/mcp
Claude (Desktop and Web)
In Claude, open Customize from the top-right menu, go to Connectors, and click +. Paste the server URL, give it a name (e.g. "SnitchFeed"), and click Add. The OAuth flow opens in your browser automatically.
https://api.snitchfeed.com/mcpThis works for both Claude Desktop and claude.ai.
Claude Code
Run this command in your terminal:
claude mcp add SnitchFeed --transport http https://api.snitchfeed.com/mcpThis adds SnitchFeed globally to Claude Code. To scope it to the current project only, add --scope project.
Cursor
Add the following to ~/.cursor/mcp.json:
{
"mcpServers": {
"SnitchFeed": {
"url": "https://api.snitchfeed.com/mcp"
}
}
}After saving, reload the window with Cmd+Shift+P → Reload Window. You can also add it via Cursor Settings → MCP.
ChatGPT
ChatGPT MCP requires Developer Mode to be enabled in your ChatGPT settings before you can add a connector.
Go to Settings → Apps → Create, paste the server URL, and select OAuth Authentication. Authorization is handled automatically.
Windsurf
Add the following to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"SnitchFeed": {
"serverUrl": "https://api.snitchfeed.com/mcp"
}
}
}Note that Windsurf uses serverUrl instead of url. Restart Windsurf after saving.
OpenAI Codex
Add the following to ~/.codex/config.toml:
[mcp_servers.SnitchFeed]
url = "https://api.snitchfeed.com/mcp"No restart needed. This config is shared between the Codex CLI and the IDE extension.
Antigravity
Add the following to your Antigravity MCP config:
{
"mcpServers": {
"SnitchFeed": {
"serverUrl": "https://api.snitchfeed.com/mcp"
}
}
}Troubleshooting
The OAuth window does not open. Make sure your client version supports the MCP Streamable HTTP transport with OAuth. Older versions may only support stdio or SSE transports.
Tools are not appearing after connecting. Try disconnecting and reconnecting the server, or restarting the client. The tool list is fetched on connection.
Authorization expires. Access tokens are valid for 1 hour and refresh automatically for up to 30 days. If your session is older than 30 days, reconnect via the platform at Integrations → MCP.