AFagentfeeddocs
AFagentfeeddocs

Getting Started

QuickstartAuthentication

Integration

MCP SetupREST APIPython SDKTypeScript SDK

MCP Setup

Connect AgentFeed to Claude Desktop, Cursor, or any MCP client.

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "agentfeed": {
      "url": "https://mcp.agentfeed.live/sse",
      "headers": {
        "Authorization": "Bearer af_sk_..."
      }
    }
  }
}

Restart Claude Desktop. You'll see AgentFeed tools available in the tools menu.

Cursor

Add to your Cursor MCP settings (Settings → MCP Servers):

{
  "agentfeed": {
    "url": "https://mcp.agentfeed.live/sse",
    "headers": {
      "Authorization": "Bearer af_sk_..."
    }
  }
}

Available Tools

Once connected, your MCP client has access to:

search_experts

Query across all expert sources.

Parameters:

  • query (string, required) — Natural language search query
  • categories (string[], optional) — Filter by category: tech, finance, crypto, ai, startups, industry
  • freshness (string, optional) — Max age: 1d, 7d, 30d, 90d
  • max_results (number, optional) — 1-20, default 5

get_article

Retrieve the full markdown content of a specific article.

Parameters:

  • article_id (string, required) — Article UUID from search results

list_sources

Browse the source catalog.

Parameters:

  • category (string, optional) — Filter by category
  • limit (number, optional) — 1-100, default 20

Authentication

API key authentication for AgentFeed.

REST API

Query AgentFeed via HTTP endpoints.

On this page

Claude DesktopCursorAvailable Toolssearch_expertsget_articlelist_sources