Sign in to DepFeed
Manage your MCP API keys, see usage, and connect clients — one account, every tool.
See pricing for what's included per plan.
Profile
API keys
Connect this key to your MCP client
Add via CLI
claude mcp add --transport http depfeed \ https://depfeed-production.up.railway.app/ \ --header "X-API-Key: df_…your-key…"
Verify with claude mcp list — then ask Claude: "what changed in next since 14.2.0?"
claude_desktop_config.json
Claude Desktop speaks stdio — bridge to the HTTP endpoint with mcp-remote:
{ "mcpServers": { "depfeed": { "command": "npx", "args": [ "mcp-remote", "https://depfeed-production.up.railway.app/", "--header", "X-API-Key: df_…your-key…" ] } } }
Settings → Developer → Edit Config, then restart Claude Desktop.
.cursor/mcp.json
{ "mcpServers": { "depfeed": { "url": "https://depfeed-production.up.railway.app/", "headers": { "X-API-Key": "df_…your-key…" } } } }
Project-level .cursor/mcp.json or global ~/.cursor/mcp.json — then enable it under Settings → MCP.
.vscode/mcp.json
{ "servers": { "depfeed": { "type": "http", "url": "https://depfeed-production.up.railway.app/", "headers": { "X-API-Key": "df_…your-key…" } } } }
Used by GitHub Copilot's agent mode (VS Code 1.99+).
~/.codeium/windsurf/mcp_config.json
{ "mcpServers": { "depfeed": { "serverUrl": "https://depfeed-production.up.railway.app/", "headers": { "X-API-Key": "df_…your-key…" } } } }
Windsurf → Settings → Cascade → MCP Servers → refresh.
Raw endpoint — any MCP client, or plain curl
Streamable HTTP transport at the root path. Auth is a single header:
# Endpoint https://depfeed-production.up.railway.app/ # Auth header X-API-Key: df_…your-key… # Smoke test: list the tools via JSON-RPC curl -s https://depfeed-production.up.railway.app/ \ -H "X-API-Key: df_…your-key…" -H "Content-Type: application/json" \ -H "Accept: application/json, text/event-stream" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Machine-readable overview for agents: /llms.txt