Citizen Deployment MCP Server
Enables deployment and management of applications on the Citizen platform from git repositories or local files. It allows AI assistants to monitor deployment logs, handle authentication, and automatically fix build errors using intelligent error analysis.
README
Citizen Deployment MCP Server
Model Context Protocol (MCP) server for deploying applications to Citizen platform. Deploy from git or local files with intelligent error handling and automatic fixes.
Works with:
- ✅ Claude Desktop
- ✅ Claude Code (VS Code Extension)
- ✅ Cursor
- ✅ VS Code with MCP extension
Installation
npm install -g @citizenteam/mcp
# or
bun install -g @citizenteam/mcp
Quick Setup
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"citizen": {
"command": "npx",
"args": ["-y", "@citizenteam/mcp"]
}
}
}
Config file location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Claude Code (VS Code Extension)
- Open VS Code settings (Cmd/Ctrl + ,)
- Search for "MCP Servers"
- Click "Edit in settings.json"
- Add:
{
"claude.mcpServers": {
"citizen": {
"command": "npx",
"args": ["-y", "@citizenteam/mcp"]
}
}
}
Cursor
- Open Cursor Settings → Features → MCP
- Click "Add MCP Server"
- Enter configuration:
{
"citizen": {
"command": "npx",
"args": ["-y", "@citizenteam/mcp"]
}
}
Or manually edit ~/.cursor/mcp.json:
{
"mcpServers": {
"citizen": {
"command": "npx",
"args": ["-y", "@citizenteam/mcp"]
}
}
}
VS Code (with MCP extension)
- Install MCP extension for VS Code
- Open settings.json (Cmd/Ctrl + Shift + P → "Preferences: Open Settings (JSON)")
- Add:
{
"mcp.servers": {
"citizen": {
"command": "npx",
"args": ["-y", "@citizenteam/mcp"]
}
}
}
First Time Setup
- Restart your IDE/Claude Desktop after adding the configuration
- Use the
authenticatetool to login with device flow - Follow the device authorization link in your browser
- Once authorized, you can deploy apps!
Available Tools
Authentication
authenticate- Login with device flowcheck_auth_status- Check auth status
App Management
list_apps- List your apps (RBAC filtered)get_app_info- Get app details
Deployment
deploy_from_git- Deploy from git repositorydeploy_from_local- Deploy from local directoryget_deployment_status- Check deployment status and logslist_deployment_runs- List recent deployments
Available Resources
Deployment Instructions (citizen://instructions)
A comprehensive guide that helps LLMs understand:
- Complete deployment workflows (git and local)
- Error handling and debugging strategies
- How to fix common build errors (Python version, Node version, port binding, etc.)
- Best practices for monitoring deployments
- RBAC permission model
- Common nixpacks configurations
- Example conversations and use cases
Your AI assistant will automatically read this resource to understand how to properly use the deployment tools, monitor builds, and fix errors when they occur.
Example Usage
Basic Deployment
You: Deploy my app from github.com/user/repo.git
AI will:
1. Read the deployment instructions to understand the workflow
2. Check if you're authenticated
3. List your apps to see what's available
4. Deploy using deploy_from_git tool
5. Monitor the deployment with get_deployment_status
6. If errors occur, analyze logs and suggest fixes
Deployment with Error Handling
You: Deploy my Flask app from the current directory
AI will:
1. Deploy using deploy_from_local (creates tar.gz automatically)
2. Monitor build progress
3. If build fails (e.g., "Python 3.11 not found"):
- Read the error from logs
- Create/update nixpacks.toml with correct Python version
- Redeploy automatically
4. Continue monitoring until successful
Interactive Debugging
You: My last deployment failed, can you help?
AI will:
1. List recent deployment runs
2. Get detailed logs for the failed run
3. Analyze the error (missing dependency, version mismatch, etc.)
4. Suggest and apply fixes
5. Redeploy with corrections
Features
- 🔐 Secure Device Authentication - OAuth-like device flow, no passwords needed
- 🚀 Git & Local Deployment - Deploy from GitHub or local files
- 🤖 Intelligent Error Fixing - AI analyzes logs and fixes build errors automatically
- 📊 Real-time Monitoring - Live deployment logs and status updates
- 🔒 RBAC Support - Role-based access control (viewer, member, admin, owner)
- 🏗️ Auto-detect Builders - Supports nixpacks and Dockerfile
- 🔄 Fast Iteration - Local deployment for quick fixes without git commits
Requirements
- Node.js 18+ or Bun
- Citizen platform account (sign up)
- One of: Claude Desktop, Claude Code, Cursor, or VS Code with MCP extension
Troubleshooting
Authentication Issues
- Make sure you've run the
authenticatetool - Check if your token has expired with
check_auth_status - Verify you're using the correct organization
Deployment Failures
- The AI will automatically analyze logs and suggest fixes
- Common issues: Python/Node version mismatches, missing dependencies, port binding
- Use
deploy_from_localfor faster iteration when fixing errors
Permission Denied
- Check your role with
list_apps- you may not have access to that app - Contact your organization admin to grant you member+ role
Links
License
MIT © Citizen Team
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.