Skip to main content
Glama
dewanshparashar

Arbitrum MCP Server

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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: {}, }, },
  • Input schema definition for the 'clear_rpc_url' tool, specifying an empty object (no input parameters required).
    inputSchema: { type: "object" as const, properties: {}, },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/dewanshparashar/arbitrum-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server