actionmcp 0.7.0 → 0.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 328575eb20b901f6a8b7aa2caf13b1a23c1bd2021eb74408d2f36314e0fda829
4
- data.tar.gz: da1a9c14363f3d9104cecc61af3e4dac402d623a0054c1b4318cc54e16a0dd0a
3
+ metadata.gz: e868fd86b80e0692fd07f6ad8c1654689a38487884e0cb9c171bfeeb5fd8bb3d
4
+ data.tar.gz: 238d565acbf9351109c6a86ba8f275dc2c3b02673ecccbb398aa21a6bc583799
5
5
  SHA512:
6
- metadata.gz: dcdd5da1fa8d6e48f373cd6ae1219b80870aae0d965456f4a6ab9be837dea71245604d6e2f2f7d2a5cd4066ac04d672283c7415f507a50c0a93a0f8c38a65c7f
7
- data.tar.gz: a09c09d16754784de58995065089fce4fadea61df562358485ea794998cda9662f22dad89fff72cd313906350da22927b24584dfa761d4dc28134e9a82f0040c
6
+ metadata.gz: f02103ba1907abdeb1944deb0d0af21ba24055034e0313f1641b8ee6ede4478a23fd680a9643317092a663284a029a29e9d5906aba550eba019a469114ebff29
7
+ data.tar.gz: 416958613078722d30a36f3b74dee4efe62f5c2319f9d88a35b1e43b2f401fb04a83187d9b09a750a49b3e6281adca850c6c65980758b06902d632599850f79f
@@ -16,11 +16,13 @@ module ActionMCP
16
16
  send_endpoint_event(sse_in_url)
17
17
 
18
18
  begin
19
+ # Create SSE instance once outside the callback with retry parameter
20
+ sse = SSE.new(response.stream)
21
+
19
22
  # Start listener and process messages via the transport
20
23
  listener = SSEListener.new(mcp_session)
21
24
  if listener.start do |message|
22
25
  # Send with proper SSE formatting
23
- sse = SSE.new(response.stream)
24
26
  sse.write(message)
25
27
  end
26
28
 
@@ -74,25 +76,22 @@ module ActionMCP
74
76
  def initialize(session)
75
77
  @session = session
76
78
  @stopped = false
77
- @subscription_active = false
78
79
  end
79
80
 
80
81
  # Start listening using ActionCable's adapter
81
82
  def start(&callback)
82
83
  Rails.logger.debug "Starting listener for channel: #{session_key}"
83
84
 
84
- # Set up success callback
85
85
  success_callback = -> {
86
- Rails.logger.debug "Successfully subscribed to channel: #{session_key}"
86
+ puts "Successfully subscribed to channel: #{session_key}"
87
87
  @subscription_active = true
88
88
  }
89
89
 
90
- # Set up message callback with detailed debugging
90
+ # Set up message callback
91
91
  message_callback = ->(raw_message) {
92
92
  begin
93
93
  # Try to parse the message if it's JSON
94
94
  message = MultiJson.load(raw_message)
95
-
96
95
  # Send the message to the callback
97
96
  callback.call(message) if callback && !@stopped
98
97
  rescue => e
@@ -102,7 +101,7 @@ module ActionMCP
102
101
  }
103
102
 
104
103
  # Subscribe using the ActionCable adapter
105
- adapter.subscribe(session_key, message_callback, success_callback)
104
+ success = adapter.subscribe(session_key, message_callback, success_callback)
106
105
 
107
106
  # Give some time for the subscription to be established
108
107
  sleep 0.5
@@ -111,21 +110,10 @@ module ActionMCP
111
110
  end
112
111
 
113
112
  def stop
114
- Rails.logger.debug "Stopping listener for: #{session_key}"
115
113
  @stopped = true
116
114
 
117
- # Unsubscribe using the correct method signature
118
- begin
119
- # Create a dummy callback that matches the one we provided in start
120
- @session.close!
121
- Rails.logger.debug "Unsubscribed from: #{session_key}"
122
- rescue => e
123
- Rails.logger.error "Error unsubscribing from #{session_key}: #{e.message}"
124
- end
125
- end
126
-
127
- def active?
128
- @subscription_active
115
+ @session.close!
116
+ Rails.logger.debug "Unsubscribed from: #{session_key}"
129
117
  end
130
118
  end
131
119
  end
@@ -56,7 +56,7 @@ module ActionMCP
56
56
  content = resource.map(&:to_h)
57
57
  send_jsonrpc_response(id, result: { contents: content })
58
58
  else
59
- send_jsonrpc_error(id, :resource_not_found, "Resource not found")
59
+ send_jsonrpc_error(id, :invalid_params, "Resource not found")
60
60
  end
61
61
  else
62
62
  send_jsonrpc_error(id, :invalid_params, "Invalid resource URI")
@@ -2,7 +2,7 @@
2
2
 
3
3
  require_relative "gem_version"
4
4
  module ActionMCP
5
- VERSION = "0.7.0"
5
+ VERSION = "0.7.1"
6
6
 
7
7
  class << self
8
8
  alias version gem_version
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmcp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih