The Nano Currency MCP Server enables MCP-compatible clients, including AI agents, to interact with Nano cryptocurrency by sending transactions and retrieving account information via the Nano node RPC. This server integrates with the Model Context Protocol (MCP) framework to give AI systems controlled access to Nano currency operations.
Before installation, ensure you have Node.js with NPM installed on your system.
To install the Nano Currency MCP Server:
git clone https://github.com/kilkelly/nano-currency-mcp-server.git
cd nano-currency-mcp-server
npm install
You'll need to configure the following environment variables:
NANO_RPC_URL
(required): URL for communication with a Nano node RPC (local or remote endpoint)NANO_WORK_GENERATION_URL
: URL for work generation. Defaults to NANO_RPC_URL
if not specifiedNANO_PRIVATE_KEY
: Nano private key used for transaction signing and address derivation (NOT the wallet seed)NANO_MAX_SEND_AMOUNT
: Maximum amount (in nano/ΣΎ) for a single transaction. Default is 0.01 nanoDownload and install Claude Desktop
Developer
tab, then Edit Config
claude_desktop_config.json
file with your configuration:{
"mcpServers": {
"nano_currency": {
"command": "ENTER_FULL_FILE_PATH_TO_NODE_DOT_EXE_ON_YOUR_SYSTEM",
"args": [
"ENTER_FULL_FILE_PATH_TO_NANO_CURRENCY_JS_FILE_FROM_THIS_REPOSITORY"
],
"env": {
"NANO_RPC_URL": "ENTER_YOUR_NANO_RPC_URL",
"NANO_WORK_GENERATION_URL": "ENTER_YOUR_NANO_WORK_GENERATION_URL",
"NANO_PRIVATE_KEY": "ENTER_YOUR_NANO_PRIVATE_KEY",
"NANO_MAX_SEND_AMOUNT": "ENTER_A_NEW_MAX_SEND_AMOUNT"
}
}
}
}
Configuration notes:
C:\\Program Files\\nodejs\\node.exe
)NANO_WORK_GENERATION_URL
lineAfter configuring and restarting Claude Desktop, you'll have access to these tools:
nano_send
: Sends a specified amount of Nano currencynano_account_info
: Retrieves information about a specific Nano account/addressnano_my_account_info
: Retrieves information about your predefined Nano accountblock_info
: Retrieves information about a specific Nano blockNANO_MAX_SEND_AMOUNT
parameterThere are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.