Cryptocurrency Daemon MCP Server (BETA)
MCP server for interacting with cryptocurrency daemon RPC interfaces (BETA)
Overview
Cryptocurrency Daemon MCP Server is a Model Context Protocol (MCP) server designed for interacting with cryptocurrency daemon RPC interfaces, enabling AI assistants to manage and interact with cryptocurrency nodes securely.
To use the server, install it via npm or Smithery, configure your cryptocurrency daemon settings, and integrate it with Claude Desktop to access various tools for managing transactions and wallets.
- Secure interaction with cryptocurrency daemons through AI. - Tools for transaction management, wallet operations, and daemon management. - Configuration options for single or multiple daemons. - Security best practices to protect funds and data.
- Sending and managing cryptocurrency transactions.
- Checking balances and wallet operations.
- Monitoring the status of cryptocurrency daemons.
Add to your AI client
Use these steps to connect Cryptocurrency Daemon MCP Server (BETA) in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"coin-daemon-mcp-raw391": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-coin-daemon-mcp-raw391"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"coin-daemon-mcp-raw391": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-coin-daemon-mcp-raw391"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"coin-daemon-mcp-raw391": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-coin-daemon-mcp-raw391"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"coin-daemon-mcp-raw391": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-coin-daemon-mcp-raw391"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"coin-daemon-mcp-raw391": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-coin-daemon-mcp-raw391"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"coin-daemon-mcp-raw391": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-coin-daemon-mcp-raw391"
]
}
}
}FAQ
Is it safe to use this server with my cryptocurrency?
Yes, but ensure to follow security best practices, such as using separate wallets and monitoring interactions.
What should I do if I encounter connection issues?
Verify that the daemon is running and check your RPC credentials and configuration settings.