A Model Context Protocol server for interacting with the Monad blockchain testnet.
- Wallet balance checking
- Network information
- Transaction details
- Token transfers and swaps
- Staking capabilities
git clone https://github.com/your-username/monad-mcp-server.git
cd monad-mcp-server
npm installFor security reasons, private keys are handled via environment variables. Before running the server:
# Linux/Mac
export PRIVATE_KEY=your_private_key_here
# Windows
set PRIVATE_KEY=your_private_key_hereNEVER hardcode private keys in your source code or commit them to your repository.
npm run build
npm start{
"mcpServers": {
"monad-mcp": {
"command": "node",
"args": [
"/path/to/your/project/build/index.js"
]
}
}
}check-wallet-balances: Get MON balancesmonad-network-info: Network informationtransaction-details: Transaction datatransfer-mon: Transfer tokensstake-apriori-mon: Staking operationsswap-mon-for-tokens: DEX swaps
MIT License