Taikun MCP
Taikun MCP server
Installation
npx taikun-mcpAsk AI about Taikun MCP
Powered by Claude · Grounded in docs
I know everything about Taikun MCP. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Cloudera Cloud Factory MCP Server
A Model Context Protocol (MCP) server for managing Cloudera Cloud Factory resources from MCP-capable clients such as Claude Desktop and Cursor.
It supports project lifecycle operations, Kubernetes resources, application catalogs and installs, standalone VMs, cloud credentials, identity administration, backups, autoscaling, and related platform workflows.
Highlights
- Robot User authentication with scope-aware authorization
- Structured JSON responses for all tools
- Project and virtual cluster management
- Kubernetes deployment, patch, delete, and kubeconfig workflows
- Catalog, repository, and application lifecycle management
- Standalone VM, disk, IP, and profile management
- Cloud credential, image, flavor, and server management
- Identity, access profile, alerting, backup, autoscaling, and policy tooling
Installation
Option 1: Download pre-built binaries
Download the latest release from the releases page.
The latest release is published automatically from the main branch and replaced on each new push, so only the newest packaged build is kept.
Linux (x86_64)
curl -L https://github.com/skotnicky/cloudera-cloud-factory-mcp/releases/latest/download/cloudera-cloud-factory-mcp_Linux_x86_64.tar.gz | tar xz
sudo mv cloudera-cloud-factory-mcp /usr/local/bin/
macOS (Intel)
curl -L https://github.com/skotnicky/cloudera-cloud-factory-mcp/releases/latest/download/cloudera-cloud-factory-mcp_Darwin_x86_64.tar.gz | tar xz
sudo mv cloudera-cloud-factory-mcp /usr/local/bin/
macOS (Apple Silicon)
curl -L https://github.com/skotnicky/cloudera-cloud-factory-mcp/releases/latest/download/cloudera-cloud-factory-mcp_Darwin_arm64.tar.gz | tar xz
sudo mv cloudera-cloud-factory-mcp /usr/local/bin/
Windows (PowerShell)
Invoke-WebRequest -Uri "https://github.com/skotnicky/cloudera-cloud-factory-mcp/releases/latest/download/cloudera-cloud-factory-mcp_Windows_x86_64.zip" -OutFile "cloudera-cloud-factory-mcp.zip"
Expand-Archive -Path "cloudera-cloud-factory-mcp.zip" -DestinationPath .
# Move cloudera-cloud-factory-mcp.exe to a directory on your PATH
Option 2: Build from source
Prerequisites
- Go 1.25 or later
- Cloudera Cloud Factory Robot User credentials
git clone https://github.com/skotnicky/cloudera-cloud-factory-mcp
cd cloudera-cloud-factory-mcp
go build -o cloudera-cloud-factory-mcp .
Option 3: Install with Go
go install github.com/skotnicky/cloudera-cloud-factory-mcp@latest
Configuration
The server authenticates with Robot User credentials only. Use the legacy TAIKUN_* environment variable names expected by the upstream Go client.
export TAIKUN_ACCESS_KEY="your-robot-user-access-key"
export TAIKUN_SECRET_KEY="your-robot-user-secret-key"
export TAIKUN_API_HOST="api-latest.osc1.sjc.cloudera.com" # Optional
export TAIKUN_DOMAIN_NAME="" # Optional
Important authentication notes
- Email/password authentication is no longer supported by this server.
- If
TAIKUN_AUTH_MODEis set, it is ignored. - If
TAIKUN_API_HOSTis not set, the server defaults toapi-latest.osc1.sjc.cloudera.com.
Using a .env file
The binary does not automatically load .env files on startup. You can either export the variables in your shell or use the included helper target:
cp .env.example .env
make run-env
Equivalent manual shell usage:
set -a
source .env
set +a
./cloudera-cloud-factory-mcp
Optional MCP lock defaults
You can pre-lock the MCP server to specific organization/project scopes at startup:
export MCP_LOCK_ORGANIZATION_IDS="12,34"
export MCP_LOCK_PROJECT_IDS="1001,1002"
These defaults can also be set directly in your MCP client config (mcp.json) via env or startup args.
Lock precedence and runtime behavior:
- Startup-configured IDs (from
MCP_LOCK_ORGANIZATION_IDS,MCP_LOCK_PROJECT_IDS, or--mcp-lock-*args) are treated as hard limits. - Runtime
mcp-lockcan only narrow scope within those hard limits. - If runtime
mcp-lockincludes IDs outside hard limits, the request is rejected. - If no hard limits and no runtime lock are set, MCP is unrestricted.
Usage
Start the server
./cloudera-cloud-factory-mcp
The server communicates over MCP stdio transport.
Print version information
./cloudera-cloud-factory-mcp --version
Logs
Runtime logs are written to:
/tmp/cloudera_cloud_factory_mcp_server.log
MCP client configuration
Claude Desktop
{
"mcpServers": {
"cloudera-cloud-factory": {
"command": "/path/to/cloudera-cloud-factory-mcp",
"args": [
"--mcp-lock-project-ids=1001,1002"
],
"env": {
"TAIKUN_ACCESS_KEY": "your-robot-user-access-key",
"TAIKUN_SECRET_KEY": "your-robot-user-secret-key",
"TAIKUN_API_HOST": "api-latest.osc1.sjc.cloudera.com",
"MCP_LOCK_ORGANIZATION_IDS": "12,34"
}
}
}
}
Any MCP client that can launch a stdio server can use the same binary and environment variables.
Claude Code — suppressing permission prompts
By default, Claude Code asks for approval before running each MCP tool call. To allow tools from this server without prompting, add them to the permissions.allow list in .claude/settings.local.json at the root of your working directory.
{
"permissions": {
"allow": [
"mcp__cloudera-cloud-factory__.*"
]
},
"enabledMcpjsonServers": [
"cloudera-cloud-factory"
]
}
The permission key format is mcp__<server-name>__<tool-name>. The value is matched as a regular expression, so mcp__cloudera-cloud-factory__.* allows all tools from this server at once.
Tool coverage
The server currently exposes tooling across these areas:
- Project management: create, list, inspect, commit, wait, and delete projects
- Virtual clusters: create, list, and delete virtual clusters
- Kubernetes: deploy YAML, patch resources, list resources, create or fetch kubeconfigs
- Cluster nodes and servers: add servers to projects, list them, and remove them
- Standalone VMs: create, inspect, manage IPs, operate power state, manage disks, and retrieve console/RDP/password metadata
- Standalone VM profiles: create, update, lock, and manage profile security group rules
- Applications and catalogs: repositories, catalog apps, installs, sync, uninstall, and wait flows
- Images and flavors: list, inspect, and bind images or flavors to projects
- Cloud credentials: list plus create or update provider-specific credentials
- Identity and access: domains, organizations, users, identity groups, and access profiles
- Platform services: alerting, backups, monitoring, AI assistant, policy, and spot settings
- Autoscaling: enable, inspect, update, and disable autoscaling
Behavior notes
robot-user-capabilitiesshows the current Robot User identity, scopes, and tool access.- Scope-aware tools fail fast with a structured JSON error when the Robot User lacks required access.
- All tool responses are JSON, not free-form text.
- After adding Kubernetes servers or making standalone VM changes, call
commit-projectto provision them. - Standalone VM workflows may require binding images and flavors to the project first.
- In general, user requests for a "VM" or "server" map to standalone VM workflows, while "node" usually means adding capacity to a Kubernetes cluster.
Development
Common local commands:
go test -v ./...
go build -o cloudera-cloud-factory-mcp .
make test
make test-all
make lint
Support
- Create an issue in this repository
- Check the Cloudera Cloud Factory documentation
- Review the MCP specification
