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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.