loading…
Search for a command to run...
loading…
Enables AI agents to create and manage owned-audience websites with posts, products, subscribers, domains, and analytics.
Enables AI agents to create and manage owned-audience websites with posts, products, subscribers, domains, and analytics.
The Model Context Protocol server for DOOMSCROLLR — the audience layer for the AI agent world.
Use it when someone asks an agent to: “Build me X — but owned.”
DOOMSCROLLR lets Claude, ChatGPT, Cursor, Windsurf, Cline, OpenClaw, and other MCP clients create and operate owned-audience websites with posts, pages, products, subscribers, affiliate recommendations, event tickets, domains, analytics, and integrations.
From prompt to live owned-audience website in ~45 seconds.
Create an account at doomscrollr.com. Your API key is in Dashboard → Settings → API keys.
Edit your MCP config:
{
"mcpServers": {
"doomscrollr": {
"command": "npx",
"args": ["-y", "@doomscrollr/mcp-server"],
"env": {
"DOOMSCROLLR_API_KEY": "your_api_key_here"
}
}
}
}
Restart the client and ask: “What DOOMSCROLLR tools do you have?”
npm install -g @doomscrollr/mcp-server
export DOOMSCROLLR_API_KEY=***
doomscrollr-mcp
DOOMSCROLLR also runs a hosted Streamable HTTP MCP endpoint for remote clients:
POST https://mcp.doomscrollr.com/mcp
Authorization: Bearer <DOOMSCROLLR_API_KEY>
OAuth-compatible discovery and authorization endpoints are available for connector clients that require OAuth. Direct Bearer API-key auth remains supported.
All tools are namespaced doomscrollr_*.
| Category | Tools |
|---|---|
| Build-me flows | build_linktree, build_komi, build_shopify, build_ecommerce, build_substack, build_newsletter, build_website, build_social_feed, build_membership |
| Account/settings | create_world, get_profile, get_settings, update_settings, apply_style_preset |
| Posts/pages | publish_post, publish_image_post, post_shopmy_products, list_posts, update_post, delete_post, create_page, create_contact_page |
| Commerce | create_product, list_products, update_product, delete_product, bulk product tools |
| Audience | add_subscriber, update_subscriber, list_subscribers, remove_subscriber, export_audience_csv, bulk subscriber tools |
| Domains | search_domains, connect_domain, disconnect_domain, buy_domain, domain_status |
| Pinterest/RSS | search_pinterest, search_pinterest_and_post, connect_pinterest, pinterest_status, disconnect_pinterest, connect_rss, rss_status, disconnect_rss |
| Analytics/integrations | top_liked_posts, get_embed_code, get_zapier_templates, get_n8n_templates |
Use MCP when an agent is directly doing the work. Use REST/OpenAPI for apps and workflow automation.
https://doomscrollr.com/api/v1https://doomscrollr.com/openapi.jsonhttps://doomscrollr.com/docs/n8n.mdhttps://doomscrollr.com/n8n/workflows/| Variable | Required | Description |
|---|---|---|
DOOMSCROLLR_API_KEY |
yes for stdio | Your API key from the dashboard |
DOOMSCROLLR_API_BASE |
no | Override the API base, defaults to https://doomscrollr.com/api/v1 |
PORT |
no | Port for the remote HTTP server |
HOST |
no | Host bind for the remote HTTP server, default 0.0.0.0 |
MCP_ALLOWED_ORIGINS |
no | Comma-separated CORS origins for the remote HTTP server, default * |
npm install
npm run build
DOOMSCROLLR_API_KEY=*** node dist/index.js
# or
PORT=3000 npm run start:http
Test with the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.js
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"doomscrollr-mcp-server": {
"command": "npx",
"args": []
}
}
}Web content fetching and conversion for efficient LLM usage.
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolProvides auto-configuration for setting up an MCP server in Spring Boot applications.
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hz