SlopFeed generates deployed, interactive web apps from text prompts. Use the API, CLI, or MCP server.
Sign up and create an API key from the dashboard.
npm install -g @slopfeed/cli slop config set api-key sk_live_your_key_here
slop create "a retro snake game with neon glow"
slop create <prompt>Create a new slop from a text promptslop edit <id> <prompt>Edit an existing slopslop remix <id> <prompt>Remix a published slop with your twistslop listList your slopsslop delete <id>Delete a slopslop open <id>Open a slop in the browserslop usageShow current period usageslop config set <key> <value>Set CLI config (api-key, api-url)Base URL: https://api.slopfeed.com
Auth: X-API-Key: sk_live_... header
POST/v1/slopsCreate a slopGET/v1/slopsList your slopsGET/v1/slops/:idGet slop detailsGET/v1/slops/:id/statusPoll generation statusPATCH/v1/slops/:idEdit a slopPOST/v1/slops/:id/remixRemix a slopDELETE/v1/slops/:idDelete a slopPOST/v1/slops/:id/publishPublish a slopGET/v1/usageGet usage statsPOST/v1/api-keysCreate API keyGET/v1/api-keysList API keysDELETE/v1/api-keys/:idRevoke API keyThe MCP server lets AI agents (Claude, Cursor, etc.) generate slops as a tool.
npm install -g @slopfeed/mcp-server
Add to your MCP config:
{
"mcpServers": {
"slopfeed": {
"command": "slopfeed-mcp",
"env": { "SLOP_API_KEY": "sk_live_..." }
}
}
}