Sign in to DepFeed

Manage your MCP API keys, see usage, and connect clients — one account, every tool.

or

See pricing for what's included per plan.

?
Free

Profile

?

API keys

Usage this month

Requests

Free tier resets monthly. Need more headroom? See Pro & Team.

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

Tool playground

Eight tools. Real request bodies.
Real responses.

This is exactly what your agent sends and receives — the responses below were captured from the production server and are replayed here, not re-fetched live. Pick a tool, hit Send.

tools/
POST / Request · JSON-RPC
Response
// Hit "Send request" to see the live-captured response