Unofficial MCP server for reading and managing Cloudcraft architecture blueprints
Runs locally over stdio
This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
npx -y @hypark5540/cloudcraft-mcp
MCP client config
{
"mcpServers": {
"cloudcraft-mcp": {
"command": "npx",
"args": [
"-y",
"@hypark5540/cloudcraft-mcp"
]
}
}
}Run
uvx cloudcraft-mcp
MCP client config
{
"mcpServers": {
"cloudcraft-mcp": {
"command": "uvx",
"args": [
"cloudcraft-mcp"
]
}
}
}Run
docker run -i --rm ghcr.io/hypark5540/cloudcraft-mcp:0.1.6
MCP client config
{
"mcpServers": {
"cloudcraft-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/hypark5540/cloudcraft-mcp:0.1.6"
]
}
}
}