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: a4b4a90666d6b9f71c78a0c49373d75bd4c2007de573f8af3c37d621c4bfaf0c
4
- data.tar.gz: 7c97ab30f559374971ca38e1f8aad6ecd6e54d5251891ba398277eaee53408c7
3
+ metadata.gz: db5dc901e94ecc707a9182889ac8604af07912b8e7361d69758a8122f4572142
4
+ data.tar.gz: 7363fea49767f889941711fc7da630015774e09b96540bcd3249a0ced0ebcccf
5
5
  SHA512:
6
- metadata.gz: fc7f904a5d47a764498d276205c63b9d0ce16b44fce651159bf6d525978d23df1be6cf1060f4f289a82baf8b815f6630b7b0d023013989e7dd1e97c97b9eb7bd
7
- data.tar.gz: 317f8156fb89000bc56c77ef4c9c4061d434f5c592355ac1021308bb8745750bffc0554d8aaf003300a7d59e4f31d3dcb842c96de87a47d32ee79807c0263884
6
+ metadata.gz: 6b58d65e571daf89731fcc4f82cd5b7d413390fcd34889a01249c29cb799feb34d7bb49d94f69ced069f097f399728e933c6b3fa0a0184a329422b20610fd844
7
+ data.tar.gz: e32dedcb932a8699461ff16244ebd97ec30bec2246bd88a8aefcea0bacf4661a49776b9195d97dc062e68c7d5b08ab66046e6866e36f6a4f3723bca98f10f553
@@ -33,7 +33,7 @@ module ActionMCP
33
33
  JsonRpc::JsonRpcError.new(@symbol, message: @error_message, data: @error_data).to_h
34
34
  else
35
35
  {
36
- content: @contents.map { |c| c.to_h },
36
+ content: @contents.map { |c| c.to_h }
37
37
  }
38
38
  end
39
39
  end
@@ -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::Messaging
15
-
16
- HEARTBEAT_INTERVAL = 15 # seconds
15
+ include Transport::Notifications
17
16
 
18
17
  # @param [ActionMCP::Session] session
19
18
  def initialize(session)
@@ -2,7 +2,7 @@
2
2
 
3
3
  require_relative "gem_version"
4
4
  module ActionMCP
5
- VERSION = "0.12.0"
5
+ VERSION = "0.13.0"
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.12.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