CreateOS MCP
Deploy, manage, and scale applications directly from your AI assistant.
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/Redis integration tools
- [ ] Webhook and event-driven deployment triggers
- [ ] Team collaboration and role-based access tools
- [ ] Cost estimation and billing analytics tools
- [ ] SSE transport support
- [ ] Deployment rollback tools
Contributing
Contributions are welcome! Here's how to get started:
- Fork the repository
- Create a feature branch:
git checkout -b feat/my-feature - Make your changes and add tests
- Run tests:
go test ./... - Commit with a clear message:
git commit -m "feat: add my feature" - Push and open a Pull Request
Please read our Contributing Guidelines if available.
Development
The MCP tools and handlers are auto-generated from the CreateOS OpenAPI spec using mcpgen. See DEVELOPMENT.md for details.
Code of Conduct
This project follows the Contributor Covenant Code of Conduct. By participating, you are expected to uphold this code.
License
This project is licensed under the MIT License.
MIT License
Copyright (c) 2025 NodeOps
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Acknowledgments
- Anthropic for creating the Model Context Protocol specification
- mark3labs/mcp-go for the excellent Go MCP SDK
- Cursor, GitHub Copilot, Windsurf, Google Gemini, and the broader AI tooling ecosystem for driving MCP adoption
- The CreateOS team for building the deployment platform
<p align="center"> <a href="https://nodeops.network/createos/docs/API-MCP/CreateOS-MCP">📚 Full Documentation</a> · <a href="https://createos.nodeops.network">🌐 CreateOS Platform</a> · <a href="https://github.com/NodeOps-app/createos-mcp/issues">🐛 Report Bug</a> </p>
<p align="center"> If you find this useful, give it a star ✨ <br><br> <a href="https://github.com/NodeOps-app/createos-mcp"> <img src="https://img.shields.io/github/stars/NodeOps-app/createos-mcp?style=social" alt="GitHub Stars"> </a> </p>
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。