Nodit MCP Server

nodit-mcp-server

Remote serverstreamable-httpTypeScript

What is the Nodit MCP server?

Connect Nodit to Claude, Cursor or any other MCP client and it stops being a tab you switch to. nodit-mcp-server. The nodit mcp server is what makes that connection.

What the server does

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.

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.

  • RPC Node & Node APIs —
  • Web3 Data APIs —
  • GraphQL Indexer APIs (Aptos only) —
  • 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

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • list_nodit_api_categoriesTools for Listing API Operations
  • list_nodit_node_apis — list_nodit_data_apis
  • list_nodit_aptos_indexer_api_query_root — list_nodit_webhook_apis
  • get_nodit_api_spec — get_nodit_aptos_indexer_api_spec
  • call_nodit_api — call_nodit_aptos_indexer_api
  • 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

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Credentials and setup notes

Configuration is passed through the environment: NODIT_API_KEY, INSERT_YOUR_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js 18+ - Nodit API Key (Sign up and get an API key at Nodit Console)

Where it fits

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Nodit's toolset — list_nodit_api_categories, list_nodit_node_apis, list_nodit_aptos_indexer_api_query_root and 3 more — is a fair guide to whether it matches your workflow. It is maintained by noditlabs; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
list_nodit_api_categories**Tools for Listing API Operations**
list_nodit_node_apislist_nodit_data_apis
list_nodit_aptos_indexer_api_query_rootlist_nodit_webhook_apis
get_nodit_api_specget_nodit_aptos_indexer_api_spec
call_nodit_apicall_nodit_aptos_indexer_api
EndpointUse 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.

How to install the Nodit MCP server

{
  "mcpServers": {
    "nodit": {
      "command": "npx",
      "args": ["-y", "@noditlabs/nodit-mcp-server"],
      "env": {
        "NODIT_API_KEY": "your-value",
        "INSERT_YOUR_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js 18+ - Nodit API Key (Sign up and get an API key at Nodit Console)
VariableDescriptionRequired
NODIT_API_KEYCredential the server authenticates with.Yes
INSERT_YOUR_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Nodit to list nodit api categories.
  • Use Nodit to list nodit node apis.
  • Use Nodit to list nodit aptos indexer api query root.

Frequently asked questions

It connects Nodit to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (list_nodit_api_categories, list_nodit_node_apis, list_nodit_aptos_indexer_api_query_root, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Nodit directly.