@cloady/mcp
v0.4.0
Published
Local MCP server for Cloady, generated from its OpenAPI contract: every API operation as a tool.
Downloads
66
Maintainers
Readme
@cloady/mcp
Local MCP server for Cloady — gives AI assistants the whole Cloady API as tools: workspaces, apps, deploys, environment variables, domains, volumes, members, integrations, billing and support tickets.
Generated from Cloady's OpenAPI contract, so every REST operation is a tool named after its operation id (listVars, createVar, deployApp, execCommand). It runs over stdio and calls https://cloady.com with your API token.
Setup
Create an API token in the dashboard under Account → API tokens.
Claude Code
claude mcp add cloady -e BEARER_TOKEN_CLOADY=cldy_… -- npx -y @cloady/mcpClaude Desktop / Cursor / any MCP client
{
"mcpServers": {
"cloady": {
"command": "npx",
"args": ["-y", "@cloady/mcp"],
"env": { "BEARER_TOKEN_CLOADY": "cldy_…" }
}
}
}API_BASE_URL overrides the target if you run Cloady elsewhere.
Tools
One per API operation. Arguments are the operation's path parameters, query parameters and body fields flattened into one object, so createVar takes workspaceSlug, appSlug, env, region, key, value and isSecret.
The token's scope (read / deploy / full) and your workspace role are enforced by the API on every call, exactly as they are for the dashboard and the SDKs.
Docs
Full reference at cloady.com/docs.
