What is Monad MCP Server?
Monad MCP Server is a middleware server that allows AI assistants to interact with the Monad blockchain, enabling functionalities such as balance checks and token transfers.
How to use Monad MCP Server?
To use Monad MCP Server, you need to configure your AI assistant with your Monad wallet's private key and set up the server in the assistant's configuration file. After configuration, restart your AI assistant to enable interaction with the Monad blockchain.
Key features of Monad MCP Server?
- Enables AI assistants to check wallet balances on the Monad blockchain.
- Allows token transfers between addresses.
- Supports both Windows and macOS configurations.
Use cases of Monad MCP Server?
- Checking wallet balance through voice commands.
- Transferring tokens to other addresses via AI assistant.
- Integrating blockchain functionalities into AI applications.
FAQ from Monad MCP Server?
- Can I use Monad MCP Server on any AI assistant?
Yes, as long as the assistant supports custom configurations.
- Is there a specific blockchain network I need to connect to?
The server is configured to connect to the Monad testnet by default, but you can change the RPC URL for mainnet access.
- What programming language is Monad MCP Server built with?
Monad MCP Server is built using TypeScript.
Monad MCP Server
This MCP server allows AI assistants to interact with the Monad blockchain, enabling balance checks and token transfers.
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 through two tools:
getBalance
: Check wallet balancetransferETH
: Transfer tokens to another address
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