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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e868fd86b80e0692fd07f6ad8c1654689a38487884e0cb9c171bfeeb5fd8bb3d
|
4
|
+
data.tar.gz: 238d565acbf9351109c6a86ba8f275dc2c3b02673ecccbb398aa21a6bc583799
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
86
|
+
puts "Successfully subscribed to channel: #{session_key}"
|
87
87
|
@subscription_active = true
|
88
88
|
}
|
89
89
|
|
90
|
-
# Set up message callback
|
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
|
-
|
118
|
-
|
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, :
|
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")
|
data/lib/action_mcp/version.rb
CHANGED