Nodit MCP Server

Official

call_nodit_aptos_indexer_api

Query structured blockchain data on Aptos networks using Nodit's Indexer API, enabling analysis and interaction without specialized development expertise. Verify API specifications beforehand for accurate calls.

Instructions

Calls a Nodit Aptos Indexer API. Returns the API response. Before making the call, it's recommended to verify the detailed API specifications using the 'get_nodit_aptos_indexer_api_spec' tool. Please note that using this tool will consume your API quota.

Input Schema

NameRequiredDescriptionDefault
networkYesNodit network to call. e.g. 'mainnet' or 'testnet'.
requestBodyYesGraphql request body matching the API's spec.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "network": { "description": "Nodit network to call. e.g. 'mainnet' or 'testnet'.", "type": "string" }, "requestBody": { "additionalProperties": {}, "description": "Graphql request body matching the API's spec.", "type": "object" } }, "required": [ "network", "requestBody" ], "type": "object" }
ID: q5mjbyhp2t