Breaking changes, security fixes, deprecations — every entry sourced. Nothing hallucinated.
DepFeed is a hosted Streamable-HTTP MCP server — no local process, no npm install, nothing to keep running. Point your client at the endpoint, pass your API key, done.
claude mcp add --transport http depfeed \ https://depfeed-production.up.railway.app/ \ --header "X-API-Key: YOUR_KEY"
Verify with claude mcp list — then ask Claude: "what changed in next since 14.2.0?"
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: YOUR_KEY" ] } } }
Settings → Developer → Edit Config, then restart Claude Desktop.
{ "mcpServers": { "depfeed": { "url": "https://depfeed-production.up.railway.app/", "headers": { "X-API-Key": "YOUR_KEY" } } } }
Project-level .cursor/mcp.json or global ~/.cursor/mcp.json — then enable it under Settings → MCP.
{ "servers": { "depfeed": { "type": "http", "url": "https://depfeed-production.up.railway.app/", "headers": { "X-API-Key": "YOUR_KEY" } } } }
Used by GitHub Copilot's agent mode (VS Code 1.99+).
{ "mcpServers": { "depfeed": { "serverUrl": "https://depfeed-production.up.railway.app/", "headers": { "X-API-Key": "YOUR_KEY" } } } }
Windsurf → Settings → Cascade → MCP Servers → refresh.
Streamable HTTP transport at the root path. Auth is a single header:
# Endpoint https://depfeed-production.up.railway.app/ # Auth header X-API-Key: YOUR_KEY # Smoke test: list the tools via JSON-RPC curl -s https://depfeed-production.up.railway.app/ \ -H "X-API-Key: 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
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.
// Hit "Send request" to see the live-captured responseWeb search is slow, expensive, and returns blog posts. Docs servers tell agents how an API works today. DepFeed answers the upgrade question: what broke between the version I know and the version that ships?
The core invariant, enforced in the schema itself: no ChangeEntry without a source_url. Every claim links to the release notes it came from — verifiable by human or agent.
An uncovered package returns a structured NotCovered response with covered alternatives — never an error, and never a guess. Your agent knows what it doesn't know.
Compact, categorized JSON with a max_tokens budget per call — least important entries drop first, marked with truncated. No 40-KB blog posts in your context.
One call for every dependency that changed in a package.json diff. Each package resolves independently — one uncovered entry never blocks the rest.
A package can look fine alone and still conflict with a peer. check_compatibility verifies recorded peerDependencies/engines ranges pairwise — and says unknown instead of pretending.
"What's new since I last checked" across the whole coverage set — including a security-only digest for CI and compliance automation. Store the cursor, call again tomorrow.
curated npm coverage today — the ecosystem's most-depended-on frameworks and libraries. Growing with demand; Team subscribers steer what's next.
Agent traffic is bursty — metered billing punishes exactly that. DepFeed is a flat subscription: predictable for you, sustainable for us.
Sign in or create a free account to generate an API key — upgrade to Pro or Team anytime from your dashboard.
Skip the marketing. The machine-readable project overview lives at /llms.txt, and tools/list on the endpoint returns full JSON schemas for all eight tools.
Two rules worth internalizing: trust NotCovered responses instead of falling back to pretraining knowledge, and never treat a compatibility unknown as a green light.
# the whole pitch, agent-sized curl -s https://depfeed-production.up.railway.app/llms.txt # → DepFeed: change intelligence for coding agents. # Ask "what changed in <pkg> since <version>?" # and get sourced, categorized, honest answers.