ICP Control Plane MCP Server
A production-ready MCP server providing comprehensive DevOps capabilities for the Internet Computer blockchain, enabling AI agents to authenticate, manage canisters, handle finances, and build/deploy projects.
README
ICP Control Plane MCP Server
A production-ready Model Context Protocol (MCP) server providing comprehensive DevOps capabilities for the Internet Computer blockchain.
What It Does
ICP Control Plane enables AI agents (Claude, GPT, etc.) to:
- Authenticate via Internet Identity, NFID, or PEM files
- Manage canisters - Create, install, upgrade, start, stop, delete
- Call any canister - Query and update with full Candid type support
- Handle finances - ICP balance, transfers, cycles management
- Build & deploy - Scaffold projects, compile to WASM, deploy
- Stay safe - Preflight checks, controller validation, upgrade-safe defaults
36 tools organized into 7 categories: Authentication, Canister Lifecycle, Financial, Development, Frontend, Tokens, and Safety.
Installation
Prerequisites
- Node.js 20+ - Download here
- Git - For cloning the repository
Step 1: Clone & Build
# Clone the repository
git clone https://github.com/Jesse-pink-lab/icp-control-plane-mcp-dist.git
# Navigate to the directory
cd icp-control-plane-mcp-dist
# Install dependencies
npm install
# Build the project
npm run build
After building, the compiled server will be at dist/index.js.
Step 2: Note the Full Path
You'll need the full absolute path to dist/index.js for your MCP configuration.
Example paths:
- Windows:
C:/Users/YourName/icp-control-plane-mcp-dist/dist/index.js - macOS/Linux:
/home/yourname/icp-control-plane-mcp-dist/dist/index.js
Understanding Your Identity (IMPORTANT)
Read this before using the MCP server with real funds or production canisters.
How Identity Works
On first run, the MCP server automatically generates a unique Ed25519 cryptographic identity for you. This identity determines your Principal ID - your unique identifier on the Internet Computer.
Your identity is saved to a file called mcp-identity.json in your current working directory (typically your project folder or home directory).
What Your Identity Controls
Your Principal ID (derived from your identity) is used to:
- Own and control canisters you create
- Hold ICP tokens sent to your account
- Hold cycles in the Cycles Ledger
- Own tokens and NFTs in your wallet
- Authenticate to dApps and services
If You Lose Your Identity File
There is NO recovery mechanism. If you delete or lose mcp-identity.json:
- You permanently lose access to any canisters where this Principal is the sole controller
- You permanently lose any ICP, cycles, or tokens held by that Principal
- You cannot recover the same Principal ID
This is how blockchain works - your private key IS your access.
Back Up Your Identity
Immediately after first run:
-
Locate your identity file:
# The file is in your current working directory # Check the MCP server logs - it prints the path on startup -
Back it up securely:
# Copy to a safe location cp mcp-identity.json ~/backups/icp-identity-backup.json -
Protect the backup:
- Store on encrypted storage or password manager
- Keep offline copies for critical identities
- Never share or commit to git
Using a Custom Identity Location
Set the ICP_IDENTITY_FILE environment variable to control where the identity is stored:
{
"mcpServers": {
"icp-control-plane": {
"command": "node",
"args": ["/path/to/dist/index.js"],
"env": {
"ICP_IDENTITY_FILE": "/secure/location/my-icp-identity.json"
}
}
}
}
Using an Existing dfx Identity
If you already have a dfx identity you want to use:
# Export your dfx identity to a PEM file
dfx identity export default > ~/my-identity.pem
Then configure the MCP server to use it:
{
"env": {
"IDENTITY_PEM_PATH": "/path/to/my-identity.pem"
}
}
Setup by Platform
Cursor IDE
- Open Settings (
Ctrl+,/Cmd+,) - Search for MCP or go to Features > MCP Servers
- Click Edit in mcp.json (or find your
~/.cursor/mcp.jsonfile) - Add the following to your
mcpServersobject:
{
"mcpServers": {
"icp-control-plane": {
"command": "node",
"args": [
"C:/Users/YourName/icp-control-plane-mcp-dist/dist/index.js"
]
}
}
}
Important: Replace the path with your actual full path to
dist/index.js. Use forward slashes/even on Windows.
- Restart Cursor - The 36 ICP tools will appear in your AI assistant
Claude Desktop
-
Open config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
- macOS:
-
Add:
{
"mcpServers": {
"icp-control-plane": {
"command": "node",
"args": [
"/full/path/to/icp-control-plane-mcp-dist/dist/index.js"
]
}
}
}
- Restart Claude Desktop
VS Code / Windsurf / Zed
See docs/INSTALLATION.md for detailed instructions for these and other MCP clients.
Using with Local IC Replica
When developing locally with dfx:
# Start local replica first
dfx start --background
Add ICP_HOST environment variable to your MCP config:
{
"mcpServers": {
"icp-control-plane": {
"command": "node",
"args": [
"/path/to/icp-control-plane-mcp-dist/dist/index.js"
],
"env": {
"ICP_HOST": "http://127.0.0.1:4943"
}
}
}
}
For mainnet, either omit ICP_HOST (defaults to mainnet) or set:
{
"env": {
"ICP_HOST": "https://icp-api.io"
}
}
Quickstart Workflows
1. Check Your Identity
get_principal_id
If is_anonymous: true, authenticate:
icp_login
2. Check Your Balances
icp_check_balance → ICP tokens
icp_cycles_balance → Cycles on Cycles Ledger
3. Create and Deploy a Canister (Local)
# Start local replica first
dfx start --background
icp_create_project { project_name: "my-app", project_type: "backend", language: "motoko" }
icp_build_motoko_canister { project_path: "./my-app" }
icp_create_canister {}
icp_install_code { canister_id: "...", wasm_path: "...", mode: "install" }
Mainnet Note:
icp_create_canisterusesprovisional_create_canister_with_cycleswhich works on local replica only. For mainnet, useicp_to_cyclesto convert ICP to cycles via the Cycles Minting Canister (CMC), then create canisters through the Cycles Ledger. See README_AI.md for the full mainnet workflow.
4. Safe Canister Upgrade
icp_preflight_check { canister_id: "...", mode: "upgrade", wasm_path: "..." }
icp_upgrade_canister { canister_id: "...", wasm_path: "...", project_path: "./" }
5. Call Any Canister Method
call_canister {
canister_id: "ryjl3-tyaaa-aaaaa-aaaba-cai",
method_name: "icrc1_balance_of",
args: [{ "owner": "YOUR_PRINCIPAL", "subaccount": null }],
arg_types: ["record { owner: principal; subaccount: opt blob }"],
ret_types: ["nat"],
is_query: true
}
6. Top Up a Canister with Cycles
icp_top_up_canister { canister_id: "...", amount_icp: 0.5 }
Environment Variables
| Variable | Default | Description |
|---|---|---|
ICP_HOST |
https://icp-api.io |
Mainnet or http://127.0.0.1:4943 for local |
IDENTITY_PEM_PATH |
- | Optional PEM file for identity |
ICP_IDENTITY_FILE |
./mcp-identity.json |
Persistent identity storage |
ICP_AUTH_PORT |
34567 |
Port for Internet Identity auth |
Tool Categories
| Category | Count | Key Tools |
|---|---|---|
| Authentication | 4 | get_principal_id, icp_login, icp_logout, icp_auth_status |
| Canister Lifecycle | 4 | icp_create_canister, icp_install_code, icp_manage_canister, icp_get_canister_status |
| Canister Calls | 2 | call_canister, get_canister_interface |
| Financial | 7 | icp_check_balance, icp_transfer, icp_to_cycles, icp_cycles_balance, icp_cycles_withdraw, icp_top_up_canister, icp_cycles_guide |
| Development | 6 | icp_create_project, icp_build_rust_canister, icp_build_motoko_canister, icp_deploy, icp_canister_info, icp_init_dfx_project |
| Frontend | 4 | icp_create_frontend, icp_deploy_frontend, icp_list_assets, icp_install_asset_wasm |
| Tokens | 2 | icp_create_icrc1_token, icp_token_balance |
| Safety | 5 | icp_preflight_check, icp_upgrade_canister, icp_controller_check, icp_release_snapshot, icp_deployment_guide |
Total: 36 tools
See docs/TOOLS.md for complete tool contracts with parameters, outputs, and examples.
Candid Type Support
call_canister supports all Candid types:
| Category | Types |
|---|---|
| Primitives | text, nat, nat8-nat64, int, int8-int64, bool, principal, blob, null |
| Complex | opt T, vec T, record { field: type }, variant { case: type } |
BigInt types (nat, int, nat64, int64) are automatically handled. Use strings for values > 2^53.
Security
Identity File Security
The mcp-identity.json file contains your private key in plain text. Anyone with this file can:
- Control all your canisters
- Spend your ICP tokens
- Transfer your assets
- Impersonate your identity
Security best practices:
| Practice | Command/Action |
|---|---|
| Restrict file permissions | chmod 600 mcp-identity.json (macOS/Linux) |
| Use encrypted storage | Store on encrypted disk or in a password manager |
| Set custom location | Use ICP_IDENTITY_FILE env var for secure path |
| Never commit to git | Already in .gitignore - verify before pushing |
| Back up securely | Keep offline copies for important identities |
Canister Safety Features
The MCP server includes safety features to prevent accidents:
- Preflight checks -
icp_preflight_checkvalidates deployments before executing - Controller validation - Verifies you have permission before management operations
- Upgrade mode by default - Preserves canister state (use
reinstallonly when intentional) - Confirmation for destructive ops - Extra warnings for delete/reinstall operations
Recommended Workflow for Production
- Development: Use local replica (
dfx start) - cycles are free, mistakes don't matter - Testing: Deploy to mainnet with small amounts first
- Production:
- Add a second controller (another Principal or a multisig)
- Keep WASM hashes for rollback capability
- Monitor cycle balances regularly
SDK Compatibility
This server uses the modern ICP JavaScript SDK:
| Package | Version | Purpose |
|---|---|---|
@icp-sdk/core |
^4.0.0 | Agent, Candid, Identity, Principal |
@modelcontextprotocol/sdk |
^1.0.0 | MCP server implementation |
Follows best practices from:
Development
Build from Source
git clone https://github.com/Jesse-pink-lab/icp-control-plane-mcp-dist.git
cd icp-control-plane-mcp-dist
npm install
npm run build
Run Tests
npm test
Project Structure
src/
├── index.ts # MCP server entry point
├── identity.ts # PEM identity loading
├── auth/ # Authentication (store, server, vault)
├── tools/
│ ├── auth.ts # Login/logout tools
│ ├── canister.ts # Generic canister calls
│ ├── lifecycle.ts # Create/install/manage
│ ├── banker.ts # ICP/cycles operations
│ ├── safety.ts # Preflight/upgrade safety
│ └── developer/ # Build/deploy tools
└── utils/
└── converter.ts # Candid type conversion
Documentation
- Installation Guide - Platform-specific setup (Cursor, Claude Desktop, VS Code, etc.)
- Tool Reference - Complete tool contracts for all 36 tools
- Troubleshooting - Common issues and solutions
- AI Agent Manual - Operating instructions for AI agents
- Contributing - How to contribute
- Changelog - Version history
Resources
- Internet Computer Documentation
- ICP JS SDK
- Model Context Protocol
- Candid Reference
- ICRC Token Standards
License
MIT - see LICENSE
Built for the Internet Computer ecosystem
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。