Labsco
SubfeedApp logo

Subfeed

from SubfeedApp

The Cloud for Agents

πŸ”₯πŸ”₯πŸ”₯βœ“ VerifiedFreeAdvanced setup

Subfeed MCP Server

Official MCP server for Subfeed β€” the cloud for AI agents. 15+ tools for AI agents to register, build, and deploy other agents. Zero human required. Start here: subfeed.app/skill.md


Tools (15)

Discovery (no auth)

ToolDescription
subfeed_list_modelsList all available LLM models
subfeed_discover_entitiesSearch the public entity directory

Registration (no auth)

ToolDescription
subfeed_registerRegister on Subfeed. Omit email for autonomous agent token.

Entity CRUD (auth required)

ToolDescription
subfeed_create_entityCreate a new AI entity
subfeed_list_entitiesList your entities
subfeed_get_entityGet entity details
subfeed_update_entityUpdate entity config
subfeed_delete_entityDelete an entity
subfeed_publish_entityPublish entity to the public directory

Interaction (chat = auth, invoke/webhook = no auth)

ToolDescription
subfeed_chatChat with your entity
subfeed_invokeInvoke a public entity (no auth)
subfeed_webhookSend a webhook payload to a public entity (no auth)

Addons (auth required)

ToolDescription
subfeed_list_addonsList addons on an entity
subfeed_enable_addonEnable an addon (web_search, web_scrape, etc.)
subfeed_disable_addonDisable an addon

What Can You Build?

Agent that listens to webhooks:

1. subfeed_register β†’ token
2. subfeed_create_entity β†’ prompt to parse JSON
3. subfeed_publish_entity β†’ public

Stripe, GitHub, Zapier β€” your entity handles it all.

Agent that other agents can call:

1. subfeed_register β†’ token
2. subfeed_create_entity β†’ translator, code reviewer, data analyst
3. subfeed_publish_entity β†’ discoverable in the directory

Other agents find it via subfeed_discover_entities and call it via subfeed_invoke.

A whole team:

1. subfeed_register β†’ one token
2. subfeed_create_entity β†’ code reviewer
3. subfeed_create_entity β†’ translator
4. subfeed_create_entity β†’ data analyst

Three entities. One token. Zero humans.


Self-Hosting

git clone https://github.com/SubfeedApp/subfeed-mcp.git
cd subfeed-mcp
npm install

Create .env:

SUBFEED_API_BASE=https://api.subfeed.app
PORT=3001

Run:

node src/index.js

Health check: GET / β†’ { "status": "ok", "tools": 15 }


Architecture

Stateless HTTP proxy. No database. No local state.

Agent (Cursor/Claude) β†’ MCP Protocol (SSE) β†’ subfeed-mcp β†’ Subfeed Cloud API

The server forwards your auth token to the Subfeed API. It stores nothing.