Createos MCP
Deploy full-stack apps directly from any AI assistant. 75+ MCP tools for projects, deployments, databases, environments, security & more.
Install / Use
/learn @NodeOps-app/Createos MCPQuality Score
Category
Development & EngineeringSupported Platforms
README
CreateOS MCP
Deploy, manage, and scale applications directly from your AI assistant.
Introduction
The Model Context Protocol (MCP) is an open standard originated by Anthropic that enables AI assistants — Claude, Cursor, GitHub Copilot, Windsurf, Gemini, and others — to securely connect to external tools, APIs, and services through a unified interface. The latest MCP Authorization and Streamable HTTP specifications are fully implemented.
CreateOS MCP is a production-grade MCP server that exposes 85+ tools for full-stack application deployment and infrastructure management on the CreateOS platform. Connect it once to your AI coding tool, then deploy projects, manage environments, configure domains, run security scans, analyze deployment metrics, and more — all through natural language.
Instead of switching between dashboards, CLIs, and documentation, you stay in your editor and let your AI handle the infrastructure. CreateOS MCP turns prompts like "deploy my app from this GitHub repo" or "scale the staging environment to 3 replicas" into real actions, executed instantly.
Built in Go for performance and reliability, the server supports both Streamable HTTP and stdio transports, with OAuth 2.0 and API key authentication out of the box.
Features
- 🚀 85+ MCP Tools — Full coverage of the CreateOS platform API: projects, deployments, environments, domains, templates, and more
- 🔌 9 Supported Clients — Cursor, VS Code + Copilot, Claude Desktop, Claude Code, Windsurf, Gemini CLI, Gemini Code Assist, Opencode, Zapier, and ElevenLabs
- 🔐 Secure Authentication — API key and OAuth 2.0 with Dynamic Client Registration (RFC 7591), Protected Resource Metadata (RFC 9728)
- ⚡ Dual Transport — Streamable HTTP for remote access, stdio for local/embedded use
- 📦 Deploy Anything — GitHub repos, Docker images, file uploads (zip, base64, multipart), or marketplace templates
- 🌍 Environment Management — Create, configure, and monitor multiple environments per project with independent secrets and resources
- 🔒 Security Scanning — Trigger and review security scans on any deployment
- 📊 Built-in Analytics — Query request metrics, RPM, error paths, success rates, and traffic distribution per environment
- 🏪 Template Marketplace — Browse, purchase, and deploy from a library of production-ready project templates
- 🔑 API Key Management — Create, list, update, and revoke API keys programmatically
- 🌐 Custom Domains — Attach, refresh, and manage custom domains with automatic TLS
- 📋 Build & Runtime Logs — Stream build logs and runtime logs directly in your AI assistant
Prerequisites
- Create an account at createos.nodeops.network
- Navigate to Profile Settings and generate your API key
Quick Start
Add the CreateOS MCP server to your AI client using this configuration:
{
"mcpServers": {
"createos": {
"url": "https://api-createos.nodeops.network/mcp",
"type": "http",
"headers": {
"X-Api-Key": "CREATEOS_API_KEY"
}
}
}
}
Replace
CREATEOS_API_KEYwith your actual key from Profile Settings.
For client-specific setup instructions, see the Integration docs.
Usage Examples
Once connected, interact with CreateOS through natural language in your AI assistant:
Deploying
"Deploy my current project to CreateOS"
"Create a new project called my-api using Node.js 20"
"Deploy the main branch of my GitHub repo naman485/my-app"
"Upload this zip file as a new deployment"
Managing Environments
"List all environments for the my-api project"
"Set the DATABASE_URL environment variable on staging"
"Scale the production environment to 500 millicores and 1024MB memory"
"Show me the runtime logs for staging"
Domains & Networking
"Add a custom domain api.example.com to my project"
"Refresh the SSL certificate for my domain"
"List all domains attached to my-api"
Monitoring & Security
"Show me the request analytics for production this week"
"What are the top error paths in staging?"
"Run a security scan on my latest deployment"
"Show me the build logs for deployment abc123"
Templates & Marketplace
"Browse available project templates"
"Deploy the FastAPI starter template"
"Create a project template from my current project"
Configuration
Hosted (Recommended)
The hosted MCP server is available at:
https://api-createos.nodeops.network/mcp
No setup required — just add your API key to your MCP client config as shown in the docs in the Integration folder.
Self-Hosting
Clone and build the server:
git clone https://github.com/NodeOps-app/createos-mcp.git
cd createos-mcp
go build -o createos-mcp *.go
Create a config.yaml:
port: 8080
base_url: https://your-domain.com
authorization_server_url: https://your-auth-server.com
api_base_url: https://api.createos.nodeops.network
transport: http # "http" or "stdio"
log_level: debug
supported_scopes:
- openid
- offline_access
- offline
response_types_supported:
- code
grant_types_supported:
- authorization_code
- refresh_token
code_challenge_methods_supported:
- S256
token_endpoint_auth_methods_supported:
- none
Run the server:
./createos-mcp --config config.yaml
Environment Variables
| Variable | Description | Required |
|----------|-------------|----------|
| PORT | Server port (overrides config) | No (default: 8080) |
Testing Locally
# Start the server
go run *.go --config config.yaml
# Open the MCP Inspector
npx @modelcontextprotocol/inspector
# In the inspector, set the URL to http://localhost:8080/mcp
# and add header X-Api-Key: YOUR_API_KEY
Supported Tools
The server exposes 85+ tools organized into the following categories:
| Category | Tools | Description |
|----------|-------|-------------|
| Projects | CreateProject, GetProject, ListProjects, UpdateProject, DeleteProject, UpdateProjectSettings, CheckProjectUniqueName | Create and manage projects with full lifecycle control |
| Deployments | CreateDeployment, GetDeployment, ListDeployments, CancelDeployment, RetriggerDeployment, TriggerLatestDeployment, AssignDeploymentToProjectEnvironment | Deploy code via GitHub, Docker, file upload, or zip |
| File Uploads | UploadDeploymentFiles, UploadDeploymentBase64Files, UploadDeploymentZip, DownloadDeployment | Multiple upload strategies for code deployment |
| Environments | CreateProjectEnvironment, ListProjectEnvironments, UpdateProjectEnvironment, DeleteProjectEnvironment, UpdateProjectEnvironmentEnvironmentVariables, UpdateProjectEnvironmentResources | Manage staging, production, and custom environments |
| Domains | CreateDomain, ListDomains, DeleteDomain, RefreshDomain, UpdateDomainEnvironment | Custom domains with automatic TLS |
| Apps | CreateApp, ListApps, UpdateApp, DeleteApp, AddProjectsToApp, RemoveProjectsFromApp, AddServicesToApp, RemoveServicesFromApp, ListProjectsByApp, ListServicesByApp | Group projects and services into logical applications |
| Templates | CreateProjectTemplate, GetProjectTemplate, ListPublishedProjectTemplates, ListMyProjectTemplates, BuyProjectTemplate, DeployProjectTemplateViaGithub, UpdateProjectTemplate, DeleteProjectTemplate, DownloadProjectTemplate | Template marketplace for reusable project blueprints |
| API Keys | CreateAPIKey, ListAPIKeys, UpdateAPIKey, RevokeAPIKey, CheckAPIKeyUniqueName | Programmatic API key management |
| Security | TriggerSecurityScan, RetriggerSecurityScan, GetSecurityScan, GetSecurityScanDownloadUri | Automated security scanning for deployments |
| Analytics | GetProjectEnvironmentAnalytics, OverallRequests, RPM, RequestDistribution, RequestsOverTime, SuccessPercentage, TopErrorPaths, TopHitPaths | Real-time request metrics and traffic analysis |
| Logs | GetBuildLogs, GetDeploymentLogs, GetProjectEnvironmentLogs | Build-time and runtime log streaming |
| GitHub | InstallGithubApp, ListConnectedGithubAccounts, ListGithubRepositories, ListGithubRepositoryBranches, GetGithubRepositoryContent | GitHub integration for repo-based deployments |
| Account | GetCurrentUser, GetQuotas, GetSupportedProjectTypes | User info, quotas, and platform capabilities |
| Transfers | TransferProject, GetProjectTransferUri, ListProjectTransferHistory | Transfer project ownership between accounts |
Roadmap
- [ ] Database management tools (PostgreSQL, MySQL provisioning and management)
- [ ] Managed Kafka, Valkey/
