clear_rpc_url
Remove the default RPC URL to reset or update configuration settings in the Arbitrum MCP Server for monitoring and managing Arbitrum Nitro nodes and chains.
Instructions
Clear the default RPC URL
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:138-150 (handler)Handler implementation for the 'clear_rpc_url' MCP tool. Clears the server's defaultRpcUrl by setting it to null and returns a confirmation message with the previously set URL if any.case "clear_rpc_url": const oldUrl = this.defaultRpcUrl; this.defaultRpcUrl = null; return { content: [ { type: "text", text: oldUrl ? `Cleared default RPC URL: ${oldUrl}` : "No default RPC URL was configured", }, ], };
- src/index.ts:846-853 (registration)Registration of the 'clear_rpc_url' tool in the getAvailableTools() method, which is returned by the listTools handler. Includes the tool name, description, and empty input schema (no parameters required).{ name: "clear_rpc_url", description: "Clear the default RPC URL", inputSchema: { type: "object" as const, properties: {}, }, },
- src/index.ts:849-852 (schema)Input schema definition for the 'clear_rpc_url' tool, specifying an empty object (no input parameters required).inputSchema: { type: "object" as const, properties: {}, },