monad-mcp-server
If you are the rightful owner of monad-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Monad MCP Server enables AI assistants to interact with the Monad blockchain, facilitating DApp interactions.
Monad MCP Server
This MCP server allows AI assistants to interact with the Monad blockchain, enabling interaction with DApps.
Quick Start
-
Get your private key from your Monad wallet
-
Add this configuration to your AI assistant config file:
Windows:
- Press
Windows + R
to open Run dialog - Type
%APPDATA%\Claude
and press Enter - Create or edit
claude_desktop_config.json
file - Open Command Prompt (cmd)
- Type
echo %appdata%
and copy the output value - Paste the value into
claude_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/"
}
}
}
}
- Restart your AI assistant
That's it! Your AI assistant can now interact with Monad blockchain.
Example Usage
Try asking your AI assistant:
- "What's my wallet balance on Monad?"
- "Can you transfer 0.1 ETH to 0x1234567890123456789012345678901234567890?"
Troubleshooting
Logs can be found at:
- Windows:
%APPDATA%\Claude\logs\mcp-server-monad.log
- macOS:
~/Library/Logs/Claude/mcp-server-monad.log
Development
If you want to contribute or run from source:
- Clone the repository:
git clone https://github.com/vib3ai/monad-mcp-server.git
cd monad-mcp-server
- Install dependencies:
npm install
- Create a
.env
file with your credentials:
WALLET_PRIVATE_KEY=your_private_key_here
MONAD_RPC_URL=https://rpc.monad.xyz/
- Build:
npm run build
- Run:
npm start
License
MIT