Nerve RPC MCP — Nerve Blockchain for AI Agents

by NerveNetwork

349 downloads
Not rated
GitHub

About

Nerve blockchain JSON-RPC & REST MCP server for AI agents. Query NVT balances, validate addresses, get transaction history, and swap tokens via NerveSwap DEX. No gas fees on Nerve network. No private key required. npm: nerve-rpc-mcp

Details

Author
NerveNetwork
Downloads
349
Categories
Developer Tools

- Exposes Nerve JSON-RPC/REST as MCP tools
- Local, non-custodial account generation and management
- Query balances, receive and pay on-chain
- Swap assets via NerveSwap SDK before payment
- PayBox multi-chain payment collection (6+ chains)
- Fast confirmation (~2 seconds) and no gas fees

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Nerve RPC MCP — Nerve Blockchain for AI Agents
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Clone the repository, navigate to the nerve rpc mcp directory, run npm install and npm run build. Then add a configuration entry to your MCP client (e.g., Cursor, Claude Desktop) specifying the command as node with args pointing to the built dist/index.js and the environment variable NERVE_API_BASE_URL set to https://api.nerve.network. After publishing to npm, a simpler npx configuration can be used.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "nerve rpc mcp \u2014 nerve blockchain for ai agents": {
            "nerve-rpc": {
                "command": "npx",
                "args": [
                    "-y",
                    "nerve-rpc-mcp"
                ]
            }
        }
    }
}

McpServers

{
    "nerve-rpc": {
        "command": "npx",
        "args": [
            "-y",
            "nerve-rpc-mcp"
        ]
    }
}

Nerve Agent — AI Payment Framework & MCP

Nerve Agent payment framework and Nerve RPC MCP for developers and AI Agents: receive, pay, swap, and query balances. Decentralized protocol, locally generated and managed accounts, no gas fees, fast confirmation.

Also includes PayBox integration: accept payments from Ethereum, BSC, Polygon, TRON, NULS, NERVE — receive USDT on your Nerve address automatically.

- GitHub: NerveNetwork
- Website: nerve.network

---

Repository Structure

| Path | Description |
|------|-------------|
| agent-payment-framework/ | Payment framework docs: receiver / payer / PayBox / local accounts |
| nerve rpc mcp/ | Nerve RPC MCP server: exposes Nerve JSON-RPC / REST as MCP tools |
| nerveswap sdk/ | NerveSwap JS SDK and Nerve public API reference |
| .cursor/skills/nerve-agent-payment/ | AI Skill: Nerve receive, pay, balance, address, NerveSwap |
| .cursor/skills/paybox-payment/ | AI Skill: PayBox multi-chain collection via Nerve address |

---

Quick Start

1. Clone the repository

git clone https://github.com/NerveNetwork/nerve-agent.git
cd nerve-agent

2. Build and configure Nerve RPC MCP

cd "nerve rpc mcp"
npm install
npm run build

Add to your MCP client config (Cursor, Claude Desktop, etc.) — replace <PATH_TO_NERVE_AGENT>:

{
  "mcpServers": {
    "nerve-rpc": {
      "command": "node",
      "args": ["<PATH_TO_NERVE_AGENT>/nerve rpc mcp/dist/index.js"],
      "env": {
        "NERVE_API_BASE_URL": "https://api.nerve.network"
      }
    }
  }
}

3. Install AI Skills

Skills are stored in .opencode/skills/ (OpenCode-native) and .cursor/skills/ (Cursor-compatible).

Project level (auto-loaded when you open this repo in OpenCode or Cursor):

```bash
git clone https://github.com/NerveNetwork/nerve-agent.git

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.