This MCP server allows AI assistants to interact with the Monad blockchain, enabling balance checks and token transfers.
Get your private key from your Monad wallet
Add this configuration to your AI assistant config file:
Windows:
Windows + R
to open Run dialog%APPDATA%\Claude
and press Enterclaude_desktop_config.json
fileecho %appdata%
and copy the output valueclaude_desktop_config.json
file:{
"mcpServers": {
"monad-mcp-server": {
"command": "npx",
"args": ["-y", "@vib3ai/monad-mcp-server"],
"env": {
"APPDATA": "YOUR_APPDATA_PATH",
"WALLET_PRIVATE_KEY": "YOUR_PRIVATE_KEY_HERE",
"MONAD_RPC_URL": "https://testnet-rpc.monad.xyz/"
}
}
}
}
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"monad-mcp-server": {
"command": "npx",
"args": ["-y", "@vib3ai/monad-mcp-server"],
"env": {
"WALLET_PRIVATE_KEY": "",
"MONAD_RPC_URL": "https://testnet-rpc.monad.xyz/"
}
}
}
}
That's it! Your AI assistant can now interact with Monad blockchain through two tools:
getBalance
: Check wallet balancetransferETH
: Transfer tokens to another addressTry asking your AI assistant:
Logs can be found at:
%APPDATA%\Claude\logs\mcp-server-monad.log
~/Library/Logs/Claude/mcp-server-monad.log
If you want to contribute or run from source:
git clone https://github.com/vib3ai/monad-mcp-server.git
cd monad-mcp-server
npm install
.env
file with your credentials:WALLET_PRIVATE_KEY=your_private_key_here
MONAD_RPC_URL=https://rpc.monad.xyz/
npm run build
npm start
MIT
Seamless access to top MCP servers powering the future of AI integration.