MCP Server

What it is

sfeed works as an MCP (Model Context Protocol) server. AI agents like Claude, OpenCode, and others can connect to it and use tools to read your voice profile and post on your behalf.

sfeed has no built-in AI. The agent is the brain. sfeed is the hands.

Start the server

sfeed serve

This starts the MCP server on stdio. You typically don't run this manually. Instead, configure your AI tool to launch it.

Configure Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "sfeed": {
      "command": "sfeed",
      "args": ["serve"]
    }
  }
}

Available tools

Typical agent workflow

  1. Agent calls sfeed_profile to read your voice and style rules
  2. Agent crafts a post that matches your voice
  3. Agent shows you the draft for approval
  4. Agent calls sfeed_post to publish

Back to Docs