engain-mcp
Allows managing Reddit growth campaigns, tasks, upvote/downvote orders, and opportunity/mention discovery through the Engain API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@engain-mcpshow my account balance"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
engain-mcp
An MCP server that wraps the Engain v1 API, so Claude Code and other MCP clients can drive Engain — Reddit growth campaigns, tasks, upvote/downvote orders, opportunity & mention discovery — programmatically.
It's a thin, hand-authored wrapper over Engain's documented REST API. Each endpoint becomes an MCP tool with a typed input schema and an agent-friendly description, so an LLM agent can discover projects, scan opportunities, draft and schedule tasks, place upvote orders, and read account state — all through one connected MCP server.
Quick start (Claude Code)
Add the server to your MCP config (~/.claude.json, or a project .mcp.json):
{
"mcpServers": {
"engain": {
"command": "npx",
"args": ["-y", "engain-mcp"],
"env": {
"ENGAIN_API_KEY": "eng_your_key_here",
"ENGAIN_PROJECT_ID": "optional-default-project-id",
"ENGAIN_MCP_READONLY": "false"
}
}
}
}Generate your ENGAIN_API_KEY in the Engain app under Settings → API (MAX-plan workspace). Restart your MCP client and the engain_* tools become available.
Related MCP server: Reddit MCP Server
Configuration
Env var | Required | Default | Purpose |
| ✅ | — | Your Engain API key ( |
|
| API host. Point at a non-prod deployment for testing. | |
| — | Default project ID for project-scoped tools when one isn't passed. | |
|
| When truthy ( |
Spend safety
Six tools spend credits: engain_create_comment_task, engain_create_post_task, engain_create_reply_task, engain_create_thread_task_group, engain_create_upvote_order, engain_create_downvote_order.
Set ENGAIN_MCP_READONLY=true and those six are never registered — the agent sees only the 23 read-only tools. With spending enabled, each spend tool returns the credits charged and remaining balance in its result, so the agent always sees what it just spent.
Tools (29)
Every tool is prefixed engain_. Project-scoped tools take an optional projectId that falls back to ENGAIN_PROJECT_ID; call engain_get_me to discover project IDs.
Account
engain_get_me— current user + accessible projectsengain_get_balance— remaining credits and free commentsengain_list_credit_transactions— paginated credit history
Tasks (read)
engain_list_tasks,engain_get_task,engain_get_tasks_bulkengain_get_rank_metrics— recommended upvote metrics for a URL (no credits; 5 req/min)
Tasks (spend 💳)
engain_create_comment_task,engain_create_post_task,engain_create_reply_task,engain_create_thread_task_group
Orders (read)
engain_list_orders,engain_get_order,engain_get_orders_bulk
Orders (spend 💳)
engain_create_upvote_order,engain_create_downvote_order
Discovery
engain_list_opportunities,engain_get_opportunityengain_list_mentions,engain_get_mention,engain_get_mention_stats,engain_get_mention_brands
Labels
engain_list_labels,engain_create_label,engain_delete_labelengain_add_task_labels,engain_remove_task_labels,engain_add_order_labels,engain_remove_order_labels
How it works
X-API-Keyauth on every request; the base path is always/api/v1.Project resolution — project-scoped tools use the call's
projectId, elseENGAIN_PROJECT_ID, else return a clear error pointing you atengain_get_me.Resilient errors — non-2xx responses become structured errors (
status,code,message);429rate limits are retried automatically with backoff (honoringRetry-After, up to 3 attempts).Transport — stdio today; the tool/client layer is transport-agnostic so a remote (HTTP) transport can be added without touching tools.
Development
npm install
npm test # vitest unit suite
npm run typecheck # tsc --noEmit (vitest does not typecheck)
npm run build # emits dist/ (tests excluded from the package)Architecture: src/config.ts (env) → src/client.ts (EngainClient/EngainError) → src/tools/* (one module per domain; each tool is an EngainTool made with defineTool) → src/tools/index.ts (buildToolRegistry, applies the readonly filter) → src/server.ts / src/bin.ts (MCP stdio wiring). Tools are plain data objects, so the whole surface is unit-testable without the MCP SDK.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AimenHallou/engain-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server