1. Conduid
  2. Developer Tools
  3. Taikun MCP
MCP server · Developer Tools

Taikun MCP

Taikun MCP server

Unclaimed MIT last commit a year ago taikundevtools
49Fair

Scored yesterday · breakdown

About Taikun MCP

Taikun MCP is an MCP server published by itera-io in the Developer Tools category: taikun MCP server. It has been installed 0 times through Conduid.

Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx taikun-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Taikun MCP

Powered by Claude · Grounded in docs

I know everything about Taikun MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

latestLatest build · 5 Jun 2026Automated rolling release from the latest `main` commit. This release is recreated on each push to `main`, and older packaged releases are removed so only the latest build is kept.
v0.0.1taikun-mcp v0.0.1 · 15 Jul 2025Full Changelog**: https://github.com/itera-io/taikun-mcp/commits/v0.0.1

README

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.

CI Release Workflow Go Version Go Report Card

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_MODE is set, it is ignored.
  • If TAIKUN_API_HOST is not set, the server defaults to api-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-lock can only narrow scope within those hard limits.
  • If runtime mcp-lock includes 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-capabilities shows 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-project to 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

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Taikun MCP

How do I install Taikun MCP?

Run npx taikun-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Taikun MCP safe to use with an AI agent?

Its trust score is 49 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Taikun MCP still maintained?

Yes — the latest release is latest (5 Jun 2026), and the last commit was a year ago. The repository has 0 stars and 0 open issues.