An MCP Server for the Nexus blockchain
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-nexus-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
The Nexus MCP Server is a bridge that enables AI agents to interact directly with the Nexus blockchain using the Model Context Protocol (MCP). It exposes blockchain functionality as MCP tools that can be accessed by any MCP-compatible AI system, including Claude and other leading LLMs.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Let AI agents create, discover, and track tokens across chains via Printr.
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
MaverickMCP - Personal Stock Analysis MCP Server
Brazilian public procurement (PNCP) and Federal Revenue CNPJ data — 16 tools, 4 prompts.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Nexus Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Enabling AI Agents to Interact with the Nexus Blockchain
The Nexus MCP Server is a bridge that enables AI agents to interact directly with the Nexus blockchain using the Model Context Protocol (MCP). It exposes blockchain functionality as MCP tools that can be accessed by any MCP-compatible AI system, including Claude and other leading LLMs.
👉 Read the full blog post to learn how Nexus is building the blockchain for the AI era, starting with MCP integration.
| Tool Name | Description | Parameters |
|---|---|---|
getNetworkInfo | Get Nexus blockchain network information | None |
getBalance | Get the balance of an address | address: string |
getTransaction | Get transaction details by hash | txHash: string |
getBlock | Get block details by number | blockNumber: string, fullTransactions: boolean (optional) |
callContract | Call a smart contract method (read-only) | to: string, data: string |
getLogs | Get event logs from the blockchain | filterObject: object |
sendRawTransaction | Submit a signed transaction to the network | signedTx: string |
# Clone the repository
git clone https://github.com/nexus/mcp-for-nexus
cd mcp-for-nexus
# Install dependencies
npm install
# Configure environment
cp .env.example .env
# Start the server
npm run dev
Once your server is running, you can connect to it using the included test client:
# Using the test client (requires Redis for SSE transport)
node scripts/test-nexus-client.mjs http://localhost:3000
For local development, make sure Redis is installed and running:
# Install Redis (macOS)
brew install redis
# Start Redis
brew services start redis
# Verify Redis is running
redis-cli ping # Should respond with "PONG"
// Example of calling blockchain tools from your application
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
import { SSEClientTransport } from "@modelcontextprotocol/sdk/client/sse.js";
const transport = new SSEClientTransport(new URL(`http://localhost:3000/sse`));
const client = new Client(
{ name: "my-app", version: "1.0.0" },
{ capabilities: { prompts: {}, resources: {}, tools: {} } }
);
await client.connect(transport);
// Get blockchain info
const networkInfo = await client.callTool({
name: "getNetworkInfo",
arguments: {}
});
// Query an account balance
const balance = await client.callTool({
name: "getBalance",
arguments: { address: "0x1234567890abcdef1234567890abcdef12345678" }
});
// Get block information
const blockData = await client.callTool({
name: "getBlock",
arguments: {
blockNumber: "latest",
fullTransactions: true
}
});
//
... [View full README on GitHub](https://github.com/nexus-xyz/mcp-nexus-server#readme)