Nodit MCP Server

Official

call_nodit_api

Execute blockchain API calls using Nodit's Web3 infrastructure. Specify protocol, network, operationId, and request body to interact with blockchain data across multiple networks.

Instructions

This function calls a specific Nodit Blockchain Context API using its operationId. Before making the call, it's recommended to verify the detailed API specifications using the 'get_nodit_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 'amoy'.
operationIdYesNodit API operationId to call.
protocolYesNodit protocol to call. e.g. 'ethereum' or 'polygon'.
requestBodyYesJSON 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 'amoy'.", "type": "string" }, "operationId": { "description": "Nodit API operationId to call.", "type": "string" }, "protocol": { "description": "Nodit protocol to call. e.g. 'ethereum' or 'polygon'.", "type": "string" }, "requestBody": { "additionalProperties": {}, "description": "JSON request body matching the API's spec.", "type": "object" } }, "required": [ "protocol", "network", "operationId", "requestBody" ], "type": "object" }

You must be authenticated.

Other Tools from Nodit MCP Server

Related Tools

ID: q5mjbyhp2t