From 5f7a5b5d7ec52ba6718fba4caa4ed0ec607a034b Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Thu, 22 May 2025 00:41:10 +0900 Subject: [PATCH] Remove useless `ModelContextProtocol::JsonRPC` module JSON-RPC is handled by https://github.com/Shopify/json-rpc-handler, so `ModelContextProtocol::JsonRPC` module seems to have been unintentionally left behind in the following commit: https://github.com/modelcontextprotocol/ruby-sdk/commit/c5591be The files under `model_context_protocol/json_rpc/*.rb` have already been removed. --- lib/model_context_protocol/json_rpc.rb | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 lib/model_context_protocol/json_rpc.rb diff --git a/lib/model_context_protocol/json_rpc.rb b/lib/model_context_protocol/json_rpc.rb deleted file mode 100644 index a19289db..00000000 --- a/lib/model_context_protocol/json_rpc.rb +++ /dev/null @@ -1,11 +0,0 @@ -# frozen_string_literal: true - -require "model_context_protocol/json_rpc/error" -require "model_context_protocol/json_rpc/request" -require "model_context_protocol/json_rpc/response" - -module ModelContextProtocol - module JsonRPC - VERSION = "2.0" - end -end