Nodit Blockchain Context▌
by noditlabs
Access real-time blockchain context with Nodit Blockchain Context APIs for token info and on-chain activity across Ether
Provides blockchain context through Nodit's APIs, enabling real-time interaction with multiple protocols including Ethereum, Polygon, and Aptos for token information and on-chain activity analysis.
Both formats append explainx.ai attribution and the canonical URL for this MCP server listing.
best for
- / General purpose MCP workflows
capabilities
what it does
Provides blockchain context through Nodit's APIs, enabling real-time interaction with multiple protocols including Ethereum, Polygon, and Aptos for token information and on-chain activity analysis.
about
Nodit Blockchain Context is an official MCP server published by noditlabs that provides AI assistants with tools and capabilities via the Model Context Protocol. Access real-time blockchain context with Nodit Blockchain Context APIs for token info and on-chain activity across Ether It is categorized under developer tools, analytics data.
how to install
You can install Nodit Blockchain Context in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
license
Apache-2.0
Nodit Blockchain Context is released under the Apache-2.0 license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
readme
Nodit MCP Server
A Model Context Protocol (MCP) server that connects AI agents and developers to structured, context-ready blockchain data across multiple networks through Nodit's Web3 infrastructure.
<a href="https://glama.ai/mcp/servers/@noditlabs/nodit-mcp-server"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@noditlabs/nodit-mcp-server/badge" alt="Nodit Server MCP server" /> </a>Overview
Nodit MCP Server simplifies how AI models and applications interact with blockchain ecosystems.
Instead of handling complex node RPCs, raw event logs, or chain-specific data structures, developers can access normalized, multi-chain blockchain data in a format optimized for AI reasoning and decision-making.
With Nodit's MCP, you can:
- Build AI agents that query, analyze, and act on real-time blockchain data across EVM-compatible and non-EVM networks.
- Develope Web3-integrated applications without requiring specialized blockchain development expertise.
- Leverage Nodit's reliable node infrastructure, Web3 Data APIs, and GraphQL indexing services through a unified access layer.
- Easily develop with blockchain MCP in both local and remote integration, depending on your workflow needs.
Supported networks include Ethereum, Base, Optimism, Arbitrum, Polygon, Aptos, Bitcoin, Dogecoin, TRON, XRPL, GIWA(Sepolia) and more.
Table of Contents
- List of Tools
- Features
- Prerequisites
- Running Local Nodit MCP Server
- Integrating Nodit Remote MCP Server
- Troubleshooting
- Example Prompts with Nodit MCP
- Scope & Limitations
- License
List of Tools
Nodit MCP Server provides tools enabling AI agents to dynamically discover, understand, and interact with Nodit's Web3 APIs and data infrastructure. The tools minimize token consumption and maintain a lightweight context by modularizing API interactions into distinct steps:
-
Tools for Listing API Categories<br> Retrieve a list of high-level API categories available.
list_nodit_api_categories
-
Tools for Listing API Operations
Fetch available operations within a selected category (Node APIs, Data APIs, Aptos Indexer APIs, Webhook APIs).list_nodit_node_apislist_nodit_data_apislist_nodit_aptos_indexer_api_query_rootlist_nodit_webhook_apis
-
Tools for Getting API Specification
Obtain detailed information for a specific API operation (parameters, request/response schema).get_nodit_api_specget_nodit_aptos_indexer_api_spec
-
Tools for Calling API
Execute an API call using the operationId and validated parameters.call_nodit_apicall_nodit_aptos_indexer_api
Nodit MCP Server communicates using the standard JSON-RPC over stdio protocol, following the Model Context Protocol (MCP) conventions. Currently, only stdio-based communication is supported for server-client interactions.
Features
The following are the key features and supported blockchain networks provided through Nodit MCP Server for AI agents and LLMs.
For detailed API specifications and usage guidelines, please refer to the Nodit Developer Documentation.
-
RPC Node & Node APIs
Access blockchain node endpoints through Nodit's professionally operated infrastructure.
Supports real-time network queries, transaction submissions, smart contract interactions, and more. -
Web3 Data APIs
High-level APIs for accessing meticulously indexed blockchain data.
Includes processed datasets such as block and transaction details, token transfer histories, account-level transaction summaries, and asset movement details — information that would be difficult to assemble directly through raw RPC calls. -
GraphQL Indexer APIs (Aptos only)
Query detailed Aptos blockchain activities through GraphQL endpoints. -
Supported Networks
- EVM-Compatible: Ethereum, Arbitrum, Avalanche, Base, Chiliz, Kaia, Optimism, Polygon, BNB Chain, GIWA(Sepolia)
- Non-EVM: Aptos, Bitcoin, Dogecoin, TRON, XRPL, Sui, Solana
Prerequisites
- Node.js 18+
- Nodit API Key (Sign up and get an API key at Nodit Console)
Running Local Nodit MCP Server
Using npx (Recommended)
npx @noditlabs/nodit-mcp-server@latest
Using local build
# Clone the repository
git clone --recurse-submodules https://github.com/noditlabs/nodit-mcp-server.git
# Move into the project directory
cd nodit-mcp-server
# Install dependencies
npm install
# Build the project
npm run build
Before starting, set your Nodit API key:
export NODIT_API_KEY=your-api-key
Then start the server:
node build/index.js
Communicating with the Local Server
Once the Nodit MCP Server is running locally, you can communicate with it using JSON-RPC over stdio.
Here’s how you can send a basic request to the server:
Example: List available tools
You can directly input the JSON-RPC payload:
{"method":"tools/list","params":{},"jsonrpc":"2.0","id":1}
Or, you can pipe the request using the echo command:
echo '{"method":"tools/list","params":{},"jsonrpc":"2.0","id":1}' | node build/index.js
Example: Call a specific tool (list_nodit_api_categories)
echo '{"method":"tools/call","params":{"name":"list_nodit_api_categories","arguments":{}},"jsonrpc":"2.0","id":1}' | node build/index.js
Connecting to Cursor IDE or Claude Desktop
Add the following configuration to your .cursor/mcp.json or claude_desktop_config.json:
-
Cursor
- MacOS:
~/.cursor/mcp.json - Windows:
C:\Users\<Username>\.cursor\mcp.json
- MacOS:
-
Claude Desktop
- MacOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
C:\Users\<Username>\AppData\Roaming\Claude\claude_desktop_config.json
- MacOS:
{
"mcpServers": {
"nodit": {
"command": "npx",
"args": ["@noditlabs/nodit-mcp-server@latest"],
"env": {
"NODIT_API_KEY": "****"
}
}
}
}
🔔 Important
Replace****with your actual Nodit API key.
If the API key is not configured properly, API requests will fail due to authentication errors.
Connecting to Claude CLI
You can also use Nodit MCP Server directly with Claude CLI for a quick setup.
Add Nodit MCP Server with the following commands:
# Add the Nodit MCP server
claude mcp add nodit-mcp-server npx @noditlabs/nodit-mcp-server
# Set API Key
export NODIT_API_KEY=your-api-key
# Start Claude with the Nodit MCP server enabled
claude
Integrating Nodit Remote MCP Server
If you’re using an AI tool that supports Remote MCP integration, you can connect to Nodit’s Remote MCP Server without running a local MCP server. This allows you to use Nodit MCP features directly within your AI environment.
Endpoint
Use the following endpoint to connect to the Nodit Remote MCP Server. Make sure to replace INSERT_YOUR_API_KEY with your actual Nodit API Key.
https://mcp.nodit.io/sse?apiKey=INSERT_YOUR_API_KEY
Connecting to Claude (Web)
If you’re on the Claude Enterprise, Pro, or Max plan, you can integrate the Remote MCP Server.
- Go to Settings > Integrations, click the [Add custom integration] button.
- Click the [Add more] button to integrate the new Remote MCP.
- Insert the endpoint provided above to complete the setup.
Once the integration is complete, you’ll see that Nodit MCP has been added under the Search and Tools section on the Claude main screen.
Connecting to Cursor IDE
To connect Nodit MCP to Cursor IDE: 1. Open Preferences > Cursor Settings > MCP Tools. 2. Click [+ New MCP Server] to open the mcp.json configuration file.
You can also open and edit the mcp.json file directly at the following path:
- MacOS:
~/.cursor/mcp.json - Windows:
C:\Users\<Username>\.cursor\mcp.json
Add the following configuration to the mcpServers object. If you already have other MCP servers configured, separate each entry with a comma.
{
"mcpServers": {
"nodit": {
"url": "https://mcp.nodit.io/sse?apiKey=INSERT_YOUR_API_KEY"
}
}
}
Once added, go back to MCP Tools in the Cursor interface and enable the nodit MCP by toggling it on. When the status shows “9 tools enabled” in green, the connection is complete.
Troubleshooting
Trouble running MCP via npx on Claude Desktop
If you are running the MCP server in combination with Claude Desktop or other tools that rely on a local Node.js installation, you may encounter issues due to:
- Multiple versions of Node.js installed (e.g., via Homebrew and package installer)
- Conflicting PATH environments
- Claude Desktop not recognizing the correct Node.js runtime
Follow the steps below to verify that Node.js 18+ is properly installed and recognized on your system.
1. Check your currently active Node.js version
Run the following command in your terminal to check the version:
node --version
You should see a version number starting with v18 or higher (e.g., v18.19.0).
If not, you may need to install a compatible version or switch to it.
[!TIP] Claude Desktop may not use the same Node.js version as your terminal. If you have multiple installations (e.g., via Homebrew, nvm, or direct installer),
FAQ
- What is the Nodit Blockchain Context MCP server?
- Nodit Blockchain Context is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
- How do MCP servers relate to agent skills?
- Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
- How are reviews shown for Nodit Blockchain Context?
- This profile displays 52 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.8 out of 5—verify behavior in your own environment before production use.
Use Cases▌
Extended AI Capabilities
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Context Enhancement
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Workflow Automation
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Implementation Guide▌
Prerequisites
- ›Claude Desktop 0.7.0+ or Cursor IDE with MCP support
- ›Basic understanding of MCP architecture and capabilities
- ›Access credentials for integrated services (if required)
- ›Willingness to experiment and iterate on configuration
Time Estimate
15-60 minutes depending on server complexity
Installation Steps
- 1.Install MCP server: npm install -g [package-name] or via GitHub
- 2.Add server configuration to ~/.claude/mcp.json
- 3.Provide required credentials and configuration
- 4.Restart Claude Desktop to load new server
- 5.Test basic functionality with simple prompts
- 6.Explore capabilities and experiment with use cases
- 7.Document successful patterns for reuse
Troubleshooting
- ⚠MCP server not loading: Check config syntax, verify installation
- ⚠Connection errors: Check network, firewall, credentials
- ⚠Feature not working: Read server docs, check required parameters
- ⚠Performance issues: Monitor resource usage, check for network latency
- ⚠Conflicts with other servers: Check port assignments, namespace collisions
Best Practices▌
✓ Do
- +Read server documentation thoroughly before setup
- +Start with simple use cases to validate functionality
- +Test in non-production environment first
- +Monitor resource usage and performance
- +Keep servers updated for bug fixes and new features
- +Document configuration for team members
- +Use environment variables for sensitive configuration
✗ Don't
- −Don't grant overly permissive access to MCP servers
- −Don't skip reading security considerations in docs
- −Don't expose sensitive data without proper controls
- −Don't run untrusted MCP servers without code review
- −Don't ignore error messages—investigate root cause
💡 Pro Tips
- ★Combine multiple MCP servers for powerful workflows
- ★Create custom MCP servers for your specific needs
- ★Share successful configurations with team
- ★Use MCP inspector for debugging
- ★Join MCP community for tips and troubleshooting
Technical Details▌
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
- Model Context Protocol (MCP)
- JSON-RPC 2.0
- stdio or HTTP transport
Compatibility
- Claude Desktop
- Cursor IDE
- Custom MCP clients
When to Use This▌
✓ Use When
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid When
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.
Integration▌
- →Tool composition: Chain multiple MCP tools in workflows
- →Context augmentation: Provide AI with relevant external data
- →Action delegation: Let AI execute tasks on external systems
- →Bidirectional sync: Keep AI context and external systems in sync
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
List & Promote Your MCP Server
Share your MCP server with the developer community
Ratings
4.8★★★★★52 reviews- ★★★★★Chaitanya Patil· Dec 20, 2024
We evaluated Nodit Blockchain Context against two servers with overlapping tools; this profile had the clearer scope statement.
- ★★★★★Neel Okafor· Dec 16, 2024
We evaluated Nodit Blockchain Context against two servers with overlapping tools; this profile had the clearer scope statement.
- ★★★★★Evelyn Ghosh· Dec 8, 2024
Nodit Blockchain Context is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★Neel Mensah· Dec 4, 2024
Nodit Blockchain Context reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
- ★★★★★Arya Abbas· Nov 27, 2024
Nodit Blockchain Context reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
- ★★★★★Neel Menon· Nov 23, 2024
Nodit Blockchain Context is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★Piyush G· Nov 11, 2024
Useful MCP listing: Nodit Blockchain Context is the kind of server we cite when onboarding engineers to host + tool permissions.
- ★★★★★Rahul Santra· Nov 7, 2024
We wired Nodit Blockchain Context into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
- ★★★★★Anika Abbas· Nov 7, 2024
Useful MCP listing: Nodit Blockchain Context is the kind of server we cite when onboarding engineers to host + tool permissions.
- ★★★★★Hana Menon· Nov 3, 2024
We wired Nodit Blockchain Context into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
showing 1-10 of 52