actionmcp 0.12.0 → 0.13.0
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: db5dc901e94ecc707a9182889ac8604af07912b8e7361d69758a8122f4572142
|
4
|
+
data.tar.gz: 7363fea49767f889941711fc7da630015774e09b96540bcd3249a0ced0ebcccf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b58d65e571daf89731fcc4f82cd5b7d413390fcd34889a01249c29cb799feb34d7bb49d94f69ced069f097f399728e933c6b3fa0a0184a329422b20610fd844
|
7
|
+
data.tar.gz: e32dedcb932a8699461ff16244ebd97ec30bec2246bd88a8aefcea0bacf4661a49776b9195d97dc062e68c7d5b08ab66046e6866e36f6a4f3723bca98f10f553
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActionMCP
|
4
|
+
module Transport
|
5
|
+
module Notifications
|
6
|
+
# Notify client that the resources list has changed
|
7
|
+
def send_resources_list_changed_notification
|
8
|
+
send_jsonrpc_notification("notifications/resources/list_changed")
|
9
|
+
end
|
10
|
+
|
11
|
+
# Notify client that a specific resource has been updated
|
12
|
+
def send_resource_updated_notification(uri)
|
13
|
+
send_jsonrpc_notification("notifications/resources/updated", { uri: })
|
14
|
+
end
|
15
|
+
|
16
|
+
# Notify client that the tools list has changed
|
17
|
+
def send_tools_list_changed_notification
|
18
|
+
send_jsonrpc_notification("notifications/tools/list_changed")
|
19
|
+
end
|
20
|
+
|
21
|
+
# Notify client that the prompts list has changed
|
22
|
+
def send_prompts_list_changed_notification
|
23
|
+
send_jsonrpc_notification("notifications/prompts/list_changed")
|
24
|
+
end
|
25
|
+
|
26
|
+
# Send a logging message to the client
|
27
|
+
def send_logging_message_notification(level:, data:, logger: nil)
|
28
|
+
params = {
|
29
|
+
level: level,
|
30
|
+
data: data
|
31
|
+
}
|
32
|
+
params[:logger] = logger if logger.present?
|
33
|
+
|
34
|
+
send_jsonrpc_notification("notifications/logging/message", params)
|
35
|
+
end
|
36
|
+
|
37
|
+
# Send progress notification for an asynchronous operation
|
38
|
+
def send_progress_notification(token:, value:, message: nil)
|
39
|
+
params = {
|
40
|
+
token: token,
|
41
|
+
value: value
|
42
|
+
}
|
43
|
+
params[:message] = message if message.present?
|
44
|
+
|
45
|
+
send_jsonrpc_notification("$/progress", params)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -7,13 +7,12 @@ module ActionMCP
|
|
7
7
|
delegate :read, :write, to: :session
|
8
8
|
include Logging
|
9
9
|
|
10
|
+
include Transport::Messaging
|
10
11
|
include Transport::Capabilities
|
11
12
|
include Transport::Tools
|
12
13
|
include Transport::Prompts
|
13
14
|
include Transport::Resources
|
14
|
-
include Transport::
|
15
|
-
|
16
|
-
HEARTBEAT_INTERVAL = 15 # seconds
|
15
|
+
include Transport::Notifications
|
17
16
|
|
18
17
|
# @param [ActionMCP::Session] session
|
19
18
|
def initialize(session)
|
data/lib/action_mcp/version.rb
CHANGED
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.
|
4
|
+
version: 0.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Abdelkader Boudih
|
@@ -156,6 +156,7 @@ files:
|
|
156
156
|
- lib/action_mcp/transport.rb
|
157
157
|
- lib/action_mcp/transport/capabilities.rb
|
158
158
|
- lib/action_mcp/transport/messaging.rb
|
159
|
+
- lib/action_mcp/transport/notifications.rb
|
159
160
|
- lib/action_mcp/transport/prompts.rb
|
160
161
|
- lib/action_mcp/transport/resources.rb
|
161
162
|
- lib/action_mcp/transport/sse_client.rb
|