emergent-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| EMERGENT_EMAIL | Yes | Account email | |
| EMERGENT_PASSWORD | Yes | Account password |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| emergent_create_projectA | Create a new project on Emergent.sh by submitting a prompt. The AI agent will start building immediately. Returns a job ID you can use to monitor progress. |
| emergent_list_projectsA | List your recent Emergent.sh projects/jobs with their status and preview URLs. |
| emergent_get_projectA | Get full details for a specific project including status, preview URL, and credits used. |
| emergent_wait_for_buildA | Poll a job until it completes (or fails/times out). Use after emergent_create_project to wait for the build to finish. |
| emergent_respond_to_agentA | Respond to a HITL (human-in-the-loop) question from the Emergent agent. Use when the agent has paused and is waiting for your input to continue building. |
| emergent_wake_environmentA | Wake up a sleeping Emergent environment (auto-sleeps after ~30min inactivity). |
| emergent_get_previewA | Get the live preview URL for a built Emergent project. |
| emergent_screenshot_previewA | Take screenshots of the live preview at multiple viewport sizes (phone, tablet, laptop, TV). Requires Playwright (installed automatically with the package). |
| emergent_get_creditsA | Get the current credit balance for the Emergent account. Returns ECU balance, monthly credits, daily credits, plan name, and refresh date. |
| emergent_credit_summaryB | Get a short human-readable credit balance summary. |
| emergent_discover_featuresA | [Browser] Discover and document available Emergent.sh features. Only needed for features not yet in the REST API. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 11 tools
Most workflow tools (create, wait, respond, wake) are clearly separated, but get_credits and credit_summary both surface credit balance information, and get_preview duplicates the preview URL already available from get_project and list_projects. Descriptions help clarify the differences, but the boundaries are not fully crisp.
Tools share an emergent_ prefix and generally follow verb_noun naming such as create_project, list_projects, wait_for_build, and wake_environment. The pattern is slightly weakened by emergent_credit_summary, which lacks a verb, and emergent_screenshot_preview, where screenshot is used awkwardly as a verb, but the overall convention is predictable.
With 11 tools, the server stays within a reasonable scope and covers the main project lifecycle. The count is slightly inflated by redundant helpers like credit_summary and get_preview, but it is not overwhelming or insufficient.
The server covers the core build workflow well: create, monitor/wait, respond to HITL questions, wake environments, preview, screenshot, and check credits. It lacks obvious lifecycle operations like canceling or stopping a build and deleting or archiving a project, and discover_features suggests the API surface has gaps.