actionmcp 0.19.0 → 0.20.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: cb964a85c5ae8f64c05730e054c3e252c22e8fe3eeea6230496929948ea51f68
4
- data.tar.gz: a7cfd82678922926ef8beb28cc0346ebb583f826d1cc9ff9d8d54f55cecd08d7
3
+ metadata.gz: 86bd5d34d17ae66d5fcae2cf75c8231f78d6c08f88199f4835e42faed93e9589
4
+ data.tar.gz: 239b2fc880942da6f7b4c1b6bf1b498ab12a7866d1bfb34e719bb7f46e206985
5
5
  SHA512:
6
- metadata.gz: f6c12f6088da3ca4e642fe9aac72d7caeacd9630619c61a1d2c93006e87ab2da7d35eb25467e086d6ecb5e3109546f0f61285e6f9c175183fb8b1365f7cbae96
7
- data.tar.gz: 70cbe6bcbf594afcc7558f3c178771c5b2d9c06d00f7474288bfbe59d9da694ccef578c68a0c5cf9a6a571f4ef51f317ed2fa34d57600321364beffb5ba7fe77
6
+ metadata.gz: ded4b3ae254173fa102465c03e665606ebd1f8acea443e117a2190c1d1115ee53b30401e94c9b9842d469493002213b32a21e58612f74f46a4e0956885f8f4b6
7
+ data.tar.gz: 730190f2a425916ea1c719cbdbdcd427ff606a0539b66e88226225f638d242f61c2663c9dcd0b38201ebe0856a4aa44ed3527f26399885e9658ee4319407c22d
@@ -0,0 +1,86 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActionMCP
4
+ class BaseResponse
5
+ include Enumerable
6
+ attr_reader :is_error
7
+
8
+ def initialize
9
+ @is_error = false
10
+ end
11
+
12
+ # Mark response as error
13
+ def mark_as_error!(symbol = :invalid_request, message: nil, data: nil)
14
+ @is_error = true
15
+ @symbol = symbol
16
+ @error_message = message
17
+ @error_data = data
18
+ self
19
+ end
20
+
21
+ # Convert to hash format expected by MCP protocol
22
+ def to_h
23
+ if @is_error
24
+ JsonRpc::JsonRpcError.new(@symbol, message: @error_message, data: @error_data).to_h
25
+ else
26
+ build_success_hash
27
+ end
28
+ end
29
+
30
+ # Method to be implemented by subclasses
31
+ def build_success_hash
32
+ raise NotImplementedError, "Subclasses must implement #build_success_hash"
33
+ end
34
+
35
+ # Alias as_json to to_h for consistency
36
+ alias as_json to_h
37
+
38
+ # Handle to_json directly
39
+ def to_json(options = nil)
40
+ to_h.to_json(options)
41
+ end
42
+
43
+ # Compare with hash for easier testing
44
+ def ==(other)
45
+ case other
46
+ when Hash
47
+ # Convert both to normalized format for comparison
48
+ hash_self = to_h.deep_transform_keys { |key| key.to_s.underscore }
49
+ hash_other = other.deep_transform_keys { |key| key.to_s.underscore }
50
+ hash_self == hash_other
51
+ when self.class
52
+ compare_with_same_class(other)
53
+ else
54
+ super
55
+ end
56
+ end
57
+
58
+ # Method to be implemented by subclasses for comparison
59
+ def compare_with_same_class(other)
60
+ raise NotImplementedError, "Subclasses must implement #compare_with_same_class"
61
+ end
62
+
63
+ # Implement eql? for hash key comparison
64
+ def eql?(other)
65
+ self == other
66
+ end
67
+
68
+ # Method to be implemented by subclasses for hash generation
69
+ def hash_components
70
+ raise NotImplementedError, "Subclasses must implement #hash_components"
71
+ end
72
+
73
+ # Implement hash method for hash key usage
74
+ def hash
75
+ hash_components.hash
76
+ end
77
+
78
+ def success?
79
+ !is_error
80
+ end
81
+
82
+ def error?
83
+ is_error
84
+ end
85
+ end
86
+ end
@@ -46,8 +46,9 @@ module ActionMCP
46
46
  # @param required [Boolean] Whether the argument is required.
47
47
  # @param default [Object] The default value of the argument.
48
48
  # @param enum [Array<String>] The list of allowed values for the argument.
49
+ # @param type [Symbol] The type of the argument (e.g., :string, :integer, :boolean). Defaults to :string.
49
50
  # @return [void]
50
- def self.argument(arg_name, description: "", required: false, default: nil, enum: nil)
51
+ def self.argument(arg_name, description: "", required: false, default: nil, enum: nil, type: :string)
51
52
  arg_def = {
52
53
  name: arg_name.to_s,
53
54
  description: description,
@@ -58,7 +59,7 @@ module ActionMCP
58
59
  self._argument_definitions += [ arg_def ]
59
60
 
60
61
  # Register the attribute so it's recognized by ActiveModel
61
- attribute arg_name, :string, default: default
62
+ attribute arg_name, type, default: default
62
63
  validates arg_name, presence: true if required
63
64
 
64
65
  return unless enum.present?
@@ -81,7 +82,7 @@ module ActionMCP
81
82
  {
82
83
  name: prompt_name,
83
84
  description: description.presence,
84
- arguments: arguments.map { |arg| arg.slice(:name, :description, :required) }
85
+ arguments: arguments.map { |arg| arg.slice(:name, :description, :required, :type) }
85
86
  }.compact
86
87
  end
87
88
 
@@ -1,16 +1,15 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActionMCP
4
- class PromptResponse
5
- include Enumerable
6
- attr_reader :messages, :is_error
4
+ class PromptResponse < BaseResponse
5
+ attr_reader :messages
7
6
 
8
7
  # Delegate methods to the underlying messages array
9
8
  delegate :empty?, :size, :each, :find, :map, to: :messages
10
9
 
11
10
  def initialize
11
+ super
12
12
  @messages = []
13
- @is_error = false
14
13
  end
15
14
 
16
15
  # Add a message to the response
@@ -25,56 +24,21 @@ module ActionMCP
25
24
  self
26
25
  end
27
26
 
28
- def mark_as_error!(symbol = :invalid_request, message: nil, data: nil)
29
- @is_error = true
30
- @symbol = symbol
31
- @error_message = message
32
- @error_data = data
33
- self
34
- end
35
-
36
- # Convert to hash format expected by MCP protocol
37
- def to_h
38
- if @is_error
39
- JsonRpc::JsonRpcError.new(@symbol, message: @error_message, data: @error_data).to_h
40
- else
41
- {
42
- messages: @messages
43
- }
44
- end
45
- end
46
-
47
- # Alias as_json to to_h for consistency
48
- alias as_json to_h
49
-
50
- # Handle to_json directly
51
- def to_json(options = nil)
52
- to_h.to_json(options)
53
- end
54
-
55
- # Compare with hash for easier testing
56
- def ==(other)
57
- case other
58
- when Hash
59
- # Convert both to normalized format for comparison
60
- hash_self = to_h.deep_transform_keys { |key| key.to_s.underscore }
61
- hash_other = other.deep_transform_keys { |key| key.to_s.underscore }
62
- hash_self == hash_other
63
- when PromptResponse
64
- messages == other.messages
65
- else
66
- super
67
- end
27
+ # Implementation of build_success_hash for PromptResponse
28
+ def build_success_hash
29
+ {
30
+ messages: @messages
31
+ }
68
32
  end
69
33
 
70
- # Implement eql? for hash key comparison
71
- def eql?(other)
72
- self == other
34
+ # Implementation of compare_with_same_class for PromptResponse
35
+ def compare_with_same_class(other)
36
+ messages == other.messages
73
37
  end
74
38
 
75
- # Implement hash method for hash key usage
76
- def hash
77
- [ messages ].hash
39
+ # Implementation of hash_components for PromptResponse
40
+ def hash_components
41
+ [ messages ]
78
42
  end
79
43
 
80
44
  # Pretty print for better debugging
@@ -2,15 +2,14 @@
2
2
 
3
3
  module ActionMCP
4
4
  # Manages the collection of content objects for tool results
5
- class ToolResponse
6
- include Enumerable
7
- attr_reader :contents, :is_error
5
+ class ToolResponse < BaseResponse
6
+ attr_reader :contents
8
7
 
9
8
  delegate :empty?, :size, :each, :find, :map, to: :contents
10
9
 
11
10
  def initialize
11
+ super
12
12
  @contents = []
13
- @is_error = false
14
13
  end
15
14
 
16
15
  # Add content to the response
@@ -19,65 +18,21 @@ module ActionMCP
19
18
  content # Return the content for chaining
20
19
  end
21
20
 
22
- # Mark response as error
23
- def mark_as_error!(symbol = :invalid_request, message: nil, data: nil)
24
- @is_error = true
25
- @symbol = symbol
26
- @error_message = message
27
- @error_data = data
28
- self
21
+ # Implementation of build_success_hash for ToolResponse
22
+ def build_success_hash
23
+ {
24
+ content: @contents.map(&:to_h)
25
+ }
29
26
  end
30
27
 
31
- # Convert to hash format expected by MCP protocol
32
- def to_h
33
- if @is_error
34
- JsonRpc::JsonRpcError.new(@symbol, message: @error_message, data: @error_data).to_h
35
- else
36
- {
37
- content: @contents.map(&:to_h)
38
- }
39
- end
28
+ # Implementation of compare_with_same_class for ToolResponse
29
+ def compare_with_same_class(other)
30
+ contents == other.contents && is_error == other.is_error
40
31
  end
41
32
 
42
- # Alias as_json to to_h for consistency
43
- alias as_json to_h
44
-
45
- # Handle to_json directly
46
- def to_json(options = nil)
47
- to_h.to_json(options)
48
- end
49
-
50
- # Compare with hash for easier testing.
51
- def ==(other)
52
- case other
53
- when Hash
54
- # Convert both to normalized format for comparison
55
- hash_self = to_h.deep_transform_keys { |key| key.to_s.underscore }
56
- hash_other = other.deep_transform_keys { |key| key.to_s.underscore }
57
- hash_self == hash_other
58
- when ToolResponse
59
- contents == other.contents && is_error == other.is_error
60
- else
61
- super
62
- end
63
- end
64
-
65
- # Implement eql? for hash key comparison
66
- def eql?(other)
67
- self == other
68
- end
69
-
70
- # Implement hash method for hash key usage
71
- def hash
72
- [ contents, is_error ].hash
73
- end
74
-
75
- def success?
76
- !is_error
77
- end
78
-
79
- def error?
80
- is_error
33
+ # Implementation of hash_components for ToolResponse
34
+ def hash_components
35
+ [ contents, is_error ]
81
36
  end
82
37
 
83
38
  # Pretty print for better debugging
@@ -2,7 +2,7 @@
2
2
 
3
3
  require_relative "gem_version"
4
4
  module ActionMCP
5
- VERSION = "0.19.0"
5
+ VERSION = "0.20.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.19.0
4
+ version: 0.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih
@@ -123,6 +123,7 @@ files:
123
123
  - exe/actionmcp_cli
124
124
  - lib/action_mcp.rb
125
125
  - lib/action_mcp/base_json_rpc_handler.rb
126
+ - lib/action_mcp/base_response.rb
126
127
  - lib/action_mcp/callbacks.rb
127
128
  - lib/action_mcp/capability.rb
128
129
  - lib/action_mcp/client.rb