From ce1c8719cfc543b7e0aaac76202798d26e3a301a Mon Sep 17 00:00:00 2001 From: Sam Bostock Date: Tue, 17 Jun 2025 02:07:25 -0400 Subject: [PATCH] Remove duplicate `method` instrumentation `handle_request` already adds the `method` to the instrumentation data, so there is no need to repeat this. Moreover, consumers can override these anyway. --- lib/mcp/server.rb | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/mcp/server.rb b/lib/mcp/server.rb index 2c39fb0a..45618bb4 100644 --- a/lib/mcp/server.rb +++ b/lib/mcp/server.rb @@ -176,7 +176,6 @@ def server_info end def init(request) - add_instrumentation_data(method: Methods::INITIALIZE) { protocolVersion: configuration.protocol_version, capabilities: capabilities, @@ -185,12 +184,10 @@ def init(request) end def list_tools(request) - add_instrumentation_data(method: Methods::TOOLS_LIST) @tools.map { |_, tool| tool.to_h } end def call_tool(request) - add_instrumentation_data(method: Methods::TOOLS_CALL) tool_name = request[:name] tool = tools[tool_name] unless tool @@ -224,12 +221,10 @@ def call_tool(request) end def list_prompts(request) - add_instrumentation_data(method: Methods::PROMPTS_LIST) @prompts.map { |_, prompt| prompt.to_h } end def get_prompt(request) - add_instrumentation_data(method: Methods::PROMPTS_GET) prompt_name = request[:name] prompt = @prompts[prompt_name] unless prompt @@ -246,21 +241,16 @@ def get_prompt(request) end def list_resources(request) - add_instrumentation_data(method: Methods::RESOURCES_LIST) - @resources.map(&:to_h) end # Server implementation should set `resources_read_handler` to override no-op default def read_resource_no_content(request) - add_instrumentation_data(method: Methods::RESOURCES_READ) add_instrumentation_data(resource_uri: request[:uri]) [] end def list_resource_templates(request) - add_instrumentation_data(method: Methods::RESOURCES_TEMPLATES_LIST) - @resource_templates.map(&:to_h) end