This MCP server enables AI assistants to interact with cryptocurrency daemon RPC interfaces, allowing them to manage and query cryptocurrency nodes in a controlled manner. It provides a bridge between AI systems and various cryptocurrency networks through a standardized protocol.
To install the Cryptocurrency Daemon Server for Claude Desktop automatically using Smithery:
npx -y @smithery/cli install @raw391/coin_daemon_mcp --client claude
Install the package using npm:
npm install @raw391/coin-daemon-mcp
Modify your Claude Desktop configuration file at:
Add the following to your configuration:
{
"mcpServers": {
"cryptocurrency": {
"command": "npx",
"args": [
"-y",
"@raw391/coin-daemon-mcp"
],
"env": {
"CONFIG_PATH": "path/to/your/config.json"
}
}
}
}
Create a JSON configuration file for your cryptocurrency daemons:
{
"daemons": [
{
"coinName": "zcash",
"nickname": "zec-main",
"rpcEndpoint": "127.0.0.1:8232",
"rpcUser": "your-rpc-user",
"rpcPassword": "your-rpc-password"
}
]
}
{
"daemons": [
{
"coinName": "zcash",
"nickname": "zec-main",
"rpcEndpoint": "127.0.0.1:8232",
"rpcUser": "zec-user",
"rpcPassword": "zec-password"
},
{
"coinName": "bitcoin",
"nickname": "btc-main",
"rpcEndpoint": "127.0.0.1:8332",
"rpcUser": "btc-user",
"rpcPassword": "btc-password"
}
]
}
Ensure your cryptocurrency daemon's configuration file (e.g., zcash.conf, bitcoin.conf) has the appropriate RPC settings:
server=1
rpcuser=your-rpc-user
rpcpassword=your-rpc-password
rpcallowip=127.0.0.1
For better security, consider using a file system MCP to manage daemon data:
{
"mcpServers": {
"cryptocurrency": {
"command": "npx",
"args": [
"-y",
"@raw391/coin-daemon-mcp"
],
"env": {
"CONFIG_PATH": "C:/CryptoConfig/daemon-config.json"
}
},
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"C:/CryptoData"
]
}
}
}
After completing the configuration, restart Claude Desktop. The MCP server provides several capabilities:
send-coins
: Send transparent transactionszsend-coins
: Send shielded transactions (for privacy coins)shield-coins
: Convert transparent to shielded fundsget-balance
: Check wallet balancesexecute-command
: Execute any supported RPC commandcheck-status
: Get daemon informationcrypto://{coinType}/help
: Access cryptocurrency documentationdaemon://{name}/help
: Get daemon-specific helpdaemon://{name}/transactions
: View recent transaction historysend-transaction-template
: Guided prompt for transactionsbalance-analysis
: Analyze wallet balances and distributiondaemon-diagnostic
: Perform daemon health checksChecking Status: Ask "What's the current status of the Zcash daemon?"
Managing Balances: Ask "What's my current balance across all addresses?"
Learning About Cryptocurrencies: Ask "Can you explain how Zcash shielded transactions work?"
Sending Transactions: Ask "Can you help me send 0.1 ZEC to address xxx?"
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "cryptocurrency" '{"command":"npx","args":["-y","@raw391/coin-daemon-mcp"],"env":{"CONFIG_PATH":"path/to/your/config.json"}}'
See the official Claude Code MCP documentation for more details.
There 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 > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cryptocurrency": {
"command": "npx",
"args": [
"-y",
"@raw391/coin-daemon-mcp"
],
"env": {
"CONFIG_PATH": "path/to/your/config.json"
}
}
}
}
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 explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"cryptocurrency": {
"command": "npx",
"args": [
"-y",
"@raw391/coin-daemon-mcp"
],
"env": {
"CONFIG_PATH": "path/to/your/config.json"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect