About
MCP Server for Clue2App - Deploy apps from AI coding assistants
README
MCP (Model Context Protocol) server for Clue2App, enabling AI coding assistants like Claude Code to deploy applications directly.
Features
- Seamless Deployment: Deploy apps from within your AI assistant conversation
- Project Management: Create and switch between projects
- App Lifecycle: Create, rebuild, delete applications
- Monitoring: Check build status, view logs, get runtime info
- Custom Domains: Register domains, assign apex (
@) and subdomains, manage TLS — all via CLI proxy
Installation
pip install clue2app-mcp
Configuration
Claude Code
Add to your ~/.claude/claude_code_config.json:
{
"mcpServers": {
"clue2app": {
"command": "clue2app-mcp",
"args": []
}
}
}
Claude Desktop
Add to your Claude Desktop config:
{
"mcpServers": {
"clue2app": {
"command": "python",
"args": ["-m", "clue2app_mcp.server"]
}
}
}
Prerequisites
Install and authenticate with Clue2App CLI:
pip install clue2app-cli c2a loginSet up a project context:
c2a project create MyProject # namespace is auto-generated c2a project use MyProject
Available Tools
Auth & Projects
| Tool | Description |
|---|---|
c2a_auth_status / c2a_status |
Check authentication and active project |
c2a_login |
Open browser login |
c2a_list_projects |
List all projects |
c2a_use_project |
Switch active project |
c2a_create_project |
Create a new project |
c2a_show_project |
Show project details |
Apps
| Tool | Description |
|---|---|
c2a_list_apps |
List apps in current project |
c2a_get_app |
Get app details (URL, status, image) |
c2a_create_app |
Deploy a new app from a Git repo |
c2a_rebuild_app |
Trigger a build |
c2a_restart_app |
Restart the app (new revision) |
c2a_delete_app |
Delete an app |
c2a_app_logs |
Runtime logs |
c2a_build_logs |
Build logs |
c2a_build_list |
List builds |
c2a_set_env / c2a_list_env |
Environment variables |
c2a_deploy_current / c2a_check_repo |
Deploy from current directory |
c2a_analyze |
Analyze a repo for deployment readiness |
Custom Domains
| Tool | Description |
|---|---|
c2a_domains_register |
Register a domain zone (DELEGATION / SUBDOMAIN_DELEGATION / CNAME_ONLY) |
c2a_domains_verify |
Check NS delegation health (live DNS lookup) |
c2a_domains_status |
Check delegation status via API |
c2a_domains_info |
Show NS records and setup instructions |
c2a_domains_list |
List registered domains in the project |
c2a_domains_assign |
Assign a single subdomain or apex (@) to an app |
c2a_domains_add |
Add one or more FQDNs to an app (auto-registers base if needed) |
c2a_domains_assignments |
List FQDN→app mappings in the project |
c2a_domains_remove |
Remove a domain assignment from an app |
c2a_domains_delete |
Delete a registered domain (and its assignments) |
Secrets
| Tool | Description |
|---|---|
c2a_secrets_list / c2a_secrets_create / c2a_secrets_delete |
Manage Git/registry credentials for private repos |
Daari LLM Gateway
| Tool | Description |
|---|---|
c2a_daari_llm_list_instances |
List Daari LLM Gateway instances in the active project |
c2a_daari_llm_create_instance |
Create a per-project LLM Gateway instance (mints JWT + writes OPENAI_API_KEY/OPENAI_BASE_URL binding secret) |
c2a_daari_llm_bind_app |
Attach a Gateway binding secret to an app via envFrom (emits kubectl patch for operator review) |
Example Usage
In Claude Code or Claude Desktop:
"Create a new project called 'demo' with namespace 'demo'"
"Deploy my FastAPI app from https://github.com/user/fastapi-app"
"Check the status of my-app"
"Show me the logs for my-app"
"Rebuild my-app"
"Register example.com with DELEGATION method"
"Point example.com (apex) and www.example.com at my-app"
"Show me the NS records I need to add at my registrar"
Development
# Clone the repo
git clone https://github.com/clue2solve/clue2app-mcp.git
cd clue2app-mcp
# Install in development mode
pip install -e ".[dev]"
# Run tests
pytest
Releasing
Releases are cut by pushing a v<version> tag that matches the version in
pyproject.toml. The .github/workflows/release.yml workflow then:
- Builds a wheel + sdist with
python -m build. - Verifies the tag matches the
pyproject.toml[project].version; fails the run if they diverge. - Publishes both artifacts to PyPI as
clue2app-mcp— only if thePYPI_API_TOKENrepo secret is set. Without the token the publish step is skipped with a clear warning and the build artifacts are still uploaded to the run so the release itself is not blocked. - Creates a GitHub Release for the tag with the wheel and sdist attached.
Typical cut:
# 1. Bump the version in pyproject.toml (e.g. 0.1.0 -> 0.1.1) and commit.
git commit -am "chore(release): v0.1.1"
# 2. Tag and push.
git tag v0.1.1
git push origin main --tags
The tag push triggers the workflow; watch it under Actions → Release.
One-time setup (still pending — see SCK-441 follow-ups):
- Claim the
clue2app-mcpname on PyPI (requires a human PyPI account). - Add a
PYPI_API_TOKENrepo secret scoped to that project under Settings → Secrets and variables → Actions.
Until both are done the workflow will build and attach artifacts but skip the PyPI upload with a warning.
License
MIT
Install Clue2app in Claude Desktop, Claude Code & Cursor
unyly install clue2appInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add clue2app -- uvx clue2app-mcpStep-by-step: how to install Clue2app
FAQ
Is Clue2app MCP free?
Yes, Clue2app MCP is free — one-click install via Unyly at no cost.
Does Clue2app need an API key?
No, Clue2app runs without API keys or environment variables.
Is Clue2app hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Clue2app in Claude Desktop, Claude Code or Cursor?
Open Clue2app on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
Roblox Studio
Enables AI coding tools to control Roblox Studio for workspace exploration, instance manipulation, and script management. It provides tools for playtesting, sce
by paralovAWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
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
by xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
by lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
Compare Clue2app with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
