Deploy and manage Bult apps from AI coding agents.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-bultcloud-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Deploy and manage Bult apps from AI coding agents.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops
MCP server for using the GitLab API
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
MCP server for ZenML - browse stacks, pipelines, runs, artifacts & trigger pipeline runs via API
TypeScript MCP server for AI-powered containerization workflows with Docker and Kubernetes support
MCP Security Weekly
Get CVE alerts and security updates for io.github.bultcloud/mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Official Model Context Protocol (MCP) server for Bult.ai, a DevOps platform and cloud hosting Platform-as-a-Service for deploying apps, GitHub repositories, Docker images, databases, and services with AI agents.
Use Bult MCP with Claude Desktop, Claude Code, Cursor, Codex, and other MCP-compatible clients to deploy apps, manage cloud infrastructure, inspect logs, and troubleshoot deployments through the Bult API.

Use Bult MCP when you want an AI coding agent to deploy and operate cloud hosting resources for you. Common workflows include deploying a GitHub repo from Cursor, deploying the current project from Claude Code, launching a Docker image, creating a database service, adding a public route, checking build logs, and debugging failed deployments.
If you install the package globally, use the bult-mcp binary:
npm install -g @bultcloud/mcp-server
bult-mcp
You can also run it with npx from MCP client configs:
npx -y @bultcloud/mcp-server
The server reads its configuration from environment variables.
| Variable | Required | Description |
|---|---|---|
BULT_API_URL | Yes | Bult API base URL, https://app.bult.ai. |
BULT_API_TOKEN | Yes | API token used for Bearer authentication. |
The server exits during startup if either variable is missing.
Add the server to claude_desktop_config.json.
Using npx:
{
"mcpServers": {
"bult": {
"command": "npx",
"args": ["-y", "@bultcloud/mcp-server"],
"env": {
"BULT_API_URL": "https://app.bult.ai",
"BULT_API_TOKEN": "your-token"
}
}
}
}
Using npx:
claude mcp add bult \
-e BULT_API_URL=https://app.bult.ai \
-e BULT_API_TOKEN=your-token \
-- npx -y @bultcloud/mcp-server
Using npx:
codex mcp add \
--env BULT_API_URL=https://app.bult.ai \
--env BULT_API_TOKEN=your-token \
bult \
-- npx -y @bultcloud/mcp-server
| Tool | Description |
|---|---|
list-projects | List all projects in the workspace. |
get-project | Get a project overview with services, volumes, and routes. |
create-project | Create a new project. |
update-project | Update a project name. |
delete-project | Delete a project and all of its resources. |
deploy-project | Deploy project changes and create a version snapshot. |
control-project | Start, stop, or discard project changes. |
| Tool | Description |
|---|---|
list-services | List all services in a project. |
get-service | Get service details and configuration. |
create-service | Create a daemon or database service. |
update-service | Update service configuration. |
delete-service | Delete a service. |
control-service | Start, stop, or rebuild a service. |
| Tool | Description |
|---|---|
create-volume | Create a persistent storage volume. |
update-volume | Update a volume name or size. |
| `delete |