openrpc-mpc-server

rpc_call

Call any JSON-RPC method on a server with parameters. A user would prompt: Call method <method> on <server url> with params <params>

Input Schema

NameRequiredDescriptionDefault
methodYesJSON-RPC method name to call
paramsNoStringified Parameters to pass to the method
serverYesServer URL

Input Schema (JSON Schema)

{ "properties": { "method": { "description": "JSON-RPC method name to call", "type": "string" }, "params": { "description": "Stringified Parameters to pass to the method", "type": "string" }, "server": { "description": "Server URL", "type": "string" } }, "required": [ "server", "method" ], "type": "object" }

You must be authenticated.

Other Tools