Skip to main content
Glama
dewanshparashar

Arbitrum MCP Server

get_rpc_url

Retrieve the default RPC URL for connecting to Arbitrum networks, enabling interaction with nodes and chains for monitoring and operations.

Instructions

Get the current default RPC URL

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler logic for the 'get_rpc_url' tool. Returns the currently configured default RPC URL as text content, or a message indicating none is set.
    case "get_rpc_url": return { content: [ { type: "text", text: this.defaultRpcUrl ? `Current default RPC URL: ${this.defaultRpcUrl}` : "No default RPC URL configured", }, ], };
  • src/index.ts:839-845 (registration)
    Tool registration in getAvailableTools() method, including name, description, and empty input schema (no parameters required). This defines the tool for the MCP listTools request.
    name: "get_rpc_url", description: "Get the current default RPC URL", inputSchema: { type: "object" as const, properties: {}, }, },
  • Input schema definition for get_rpc_url tool: an empty object (no input parameters needed).
    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