This MCP server interacts with the Monad testnet and offers a range of capabilities. These include checking MON token balances, sending transactions, deploying smart contracts, and more.
The Model Context Protocol (MCP) is a standard that allows AI models to interact with external tools and services.
- Node.js (v16 or later)
npm
oryarn
orpnpm
- Claude Desktop
This project uses an .env.example
file to manage environment variables. To use it, follow these steps:
- Copy the
.env.example
file and rename it to.env
. - Open the
.env
file and fill in the necessary environment variables according to your needs. - Make sure not to commit the
.env
file to the repository to protect your sensitive information.
- Clone this repository
git clone https://github.com/lispking/monad-mcp-server.git
- Install dependencies:
pnpm i
pnpm build
The server is now ready to use!
{
"mcpServers": {
...
"monad-mcp": {
"command": "node",
"args": [
"/<path-to-project>/build/index.js"
],
"env": {
"PRIVATE_KEY": "<your private key>"
}
}
}
}