npm @wkalidev/multichain-mcpstdioupdated 1mo ago
The only MCP server that gives AI agents native access to Stacks, Celo, and Base — from a single npm package.
O que dá para fazer com multichain mcp?
@wkalidev/multichain-mcp
The only MCP server that gives AI agents native access to Stacks, Celo, and Base — from a single npm package.
Connect Claude Desktop, Cursor, or any MCP-compatible AI to 3 blockchains in under 5 minutes.
Why this exists
Building an AI agent that interacts with Web3 today means writing separate integrations for every chain. This package ships a production-ready MCP server with 5 battle-tested tools across Stacks (Bitcoin L2), Celo, and Base — no RPC keys required to start.
Pricing
| Tier | Price | Tools | |
|---|---|---|---|
| Free | $0 | get_balance, get_prices |
|
| Pro | $9/mo | + get_portfolio, prepare_transfer |
Lemon Squeezy → · GitHub Sponsors → |
| Team | $29/mo | + deploy_token |
Lemon Squeezy → · GitHub Sponsors → |
Tools included
| Tool | Description | Tier |
|---|---|---|
get_balance |
Native + token balances for any wallet | Free |
get_prices |
Live prices + 24h change (STX, CELO, ETH, USDC, WBTC…) | Free |
get_portfolio |
Aggregate view across all 3 chains in one call | Pro |
prepare_transfer |
Build unsigned tx for native or ERC-20/SIP-010 transfer | Pro |
deploy_token |
Prepare unsigned ERC-20 deployment tx on Celo or Base | Team |
All write operations return unsigned transactions — your users always sign with their own wallet. Non-custodial by design.
Install
npm install @wkalidev/multichain-mcp
Claude Desktop setup
Add to your claude_desktop_config.json:
{
"mcpServers": {
"multichain": {
"command": "npx",
"args": ["-y", "@wkalidev/multichain-mcp"],
"env": {
"MULTICHAIN_LICENSE_KEY": "your-license-key"
}
}
}
}
Omit the env block to run on the Free tier. Restart Claude Desktop after adding your key.
Cursor / Windsurf setup
Add to .cursor/mcp.json or .windsurf/mcp.json:
{
"mcpServers": {
"multichain": {
"command": "npx",
"args": ["-y", "@wkalidev/multichain-mcp"],
"env": {
"MULTICHAIN_LICENSE_KEY": "your-license-key"
}
}
}
}
Usage examples
Check Stacks wallet
"What tokens does SP2C2YFP12AJZB4MABJBAJ55XECVS7E4PMMZ89YZR hold on Stacks?"
→ get_balance({ address: "SP2C2YFP...", chain: "stacks" })
Full multichain portfolio
"Show me my full portfolio across all chains"
→ get_portfolio({ addresses: { stacks: "SP...", celo: "0x...", base: "0x..." } })
Deploy a token
"Deploy a token called GreenDAO with symbol GRN, 1M supply on Base"
→ deploy_token({ chain: "base", name: "GreenDAO", symbol: "GRN", totalSupply: "1000000", ownerAddress: "0x..." })
Live prices
"What are the current prices of STX, CELO and ETH?"
→ get_prices({ symbols: ["STX", "CELO", "ETH"] })
Networks
| Chain | RPC | Explorer |
|---|---|---|
| Stacks | api.hiro.so (public) | explorer.hiro.so |
| Celo | forno.celo.org (public) | celoscan.io |
| Base | mainnet.base.org (public) | basescan.org |
No API keys required for basic usage.
Programmatic use
import { getBalance, getPortfolio, getPrices } from "@wkalidev/multichain-mcp";
const balance = await getBalance({ address: "SP2C2YFP...", chain: "stacks" });
const prices = await getPrices({ symbols: ["STX", "CELO", "ETH"] });
Built by
@wkalidev — author of celobank-agent (ERC-8004 AI agent, 21 MCP tools on Celo mainnet) and stacks-quest (non-custodial DeFi terminal on Stacks Bitcoin L2).
License
MIT
Instalação
Adicione multichain mcp ao seu cliente. Escolha o que você usa.
claude mcp add multichain-mcp -- npx -y @wkalidev/multichain-mcpcodex mcp add multichain-mcp -- npx -y @wkalidev/multichain-mcpamp mcp add multichain-mcp -- npx -y @wkalidev/multichain-mcp{
"mcpServers": {
"multichain-mcp": {
"command": "npx",
"args": [
"-y",
"@wkalidev/multichain-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"multichain-mcp": {
"command": "npx",
"args": [
"-y",
"@wkalidev/multichain-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"multichain-mcp","command":"npx","args":["-y","@wkalidev/multichain-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"multichain-mcp": {
"command": "npx",
"args": [
"-y",
"@wkalidev/multichain-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"multichain-mcp": {
"command": "npx",
"args": [
"-y",
"@wkalidev/multichain-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"multichain-mcp": {
"command": "npx",
"args": [
"-y",
"@wkalidev/multichain-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"multichain-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@wkalidev/multichain-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"multichain-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@wkalidev/multichain-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @wkalidev/multichain-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
5 ferramentas
multichain mcp expõe 5 ferramentas a um agente conectado.
- get_balance
- Native + token balances for any wallet
- get_prices
- Live prices + 24h change (STX, CELO, ETH, USDC, WBTC…)
- get_portfolio
- Aggregate view across all 3 chains in one call
- prepare_transfer
- Build unsigned tx for native or ERC-20/SIP-010 transfer
- deploy_token
- Prepare unsigned ERC-20 deployment tx on Celo or Base
Pontuação
68 / 100
Boa
- Documentação25/25
- Manutenção19/25
- Confiança6/20
- Capacidade6/15
- Instalação12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 27 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 5 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 1.2.1Mais recente | 2 de jul. de 2026 |