actionmcp 0.10.0 → 0.12.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: 39f50d723aa2a52bcc863de6cec116970a5595719f4f974e21a91d40e6279685
4
- data.tar.gz: d5dd09cf26636b709e928c36b710a7319d4afa05e4538fe090e4a7d9f0571533
3
+ metadata.gz: a4b4a90666d6b9f71c78a0c49373d75bd4c2007de573f8af3c37d621c4bfaf0c
4
+ data.tar.gz: 7c97ab30f559374971ca38e1f8aad6ecd6e54d5251891ba398277eaee53408c7
5
5
  SHA512:
6
- metadata.gz: bec413dbeb4c8377f57f0d8a4942b0e04bc71412e8aea833730c521965e5b3e1f4803dd5f37553fa7d51d31baeefd8efde86bdb26309e698ae43546a2ad88957
7
- data.tar.gz: 8790e5172337913ffc393bf1deaa4f09e689f85f9ba1bc611fcbbd261788cc625deed50fc361c3c1b8d131407777d39bf17461bf9f18893ed21597dd9edeefd1
6
+ metadata.gz: fc7f904a5d47a764498d276205c63b9d0ce16b44fce651159bf6d525978d23df1be6cf1060f4f289a82baf8b815f6630b7b0d023013989e7dd1e97c97b9eb7bd
7
+ data.tar.gz: 317f8156fb89000bc56c77ef4c9c4061d434f5c592355ac1021308bb8745750bffc0554d8aaf003300a7d59e4f31d3dcb842c96de87a47d32ee79807c0263884
@@ -102,6 +102,8 @@ module ActionMCP
102
102
  # }
103
103
  # }
104
104
  def process_completion_complete(id, params)
105
+ # TODO: Not Implemented, but to remove the error message in the inspector
106
+ transport.send_jsonrpc_response(id, result: { completion: { values: [], total: 0, hasMore: false } })
105
107
  case params["ref"]["type"]
106
108
  when "ref/prompt"
107
109
  # TODO: Implement completion
@@ -3,8 +3,7 @@
3
3
  module ActionMCP
4
4
  class PromptResponse
5
5
  include Enumerable
6
-
7
- attr_reader :messages
6
+ attr_reader :messages, :is_error
8
7
 
9
8
  # Delegate methods to the underlying messages array
10
9
  delegate :empty?, :size, :each, :find, :map, to: :messages
@@ -26,7 +25,7 @@ module ActionMCP
26
25
  self
27
26
  end
28
27
 
29
- def mark_as_error!(symbol, message: nil, data: nil)
28
+ def mark_as_error!(symbol = :invalid_request, message: nil, data: nil)
30
29
  @is_error = true
31
30
  @symbol = symbol
32
31
  @error_message = message
@@ -17,20 +17,7 @@ module ActionMCP
17
17
  def prompt_call(prompt_name, arguments)
18
18
  prompt = find(prompt_name)
19
19
  prompt = prompt.new(arguments)
20
- prompt.valid?
21
- if prompt.valid?
22
- {
23
- messages: [ {
24
- role: "user",
25
- content: prompt.call
26
- } ]
27
- }
28
- else
29
- {
30
- content: prompt.errors.full_messages.map { |msg| Content::Text.new(msg) },
31
- isError: true
32
- }
33
- end
20
+ prompt.call
34
21
  end
35
22
 
36
23
  def item_klass
@@ -134,13 +134,11 @@ module ActionMCP
134
134
  perform # Invoke the subclass-specific logic if valid
135
135
  rescue => e
136
136
  # Handle exceptions during execution
137
- @response.mark_as_error!
138
- render text: "Error executing tool: #{e.message}"
137
+ @response.mark_as_error!(:internal_error, message: e.message)
139
138
  end
140
139
  else
141
140
  # Handle validation failure
142
- @response.mark_as_error!
143
- render text: "Invalid input: #{errors.full_messages.join(', ')}"
141
+ @response.mark_as_error!(:invalid_request, message: "Invalid input", data: errors.full_messages)
144
142
  end
145
143
 
146
144
  @response # Return the response with collected content
@@ -19,17 +19,23 @@ module ActionMCP
19
19
  end
20
20
 
21
21
  # Mark response as error
22
- def mark_as_error!
22
+ def mark_as_error!(symbol = :invalid_request, message: nil, data: nil)
23
23
  @is_error = true
24
+ @symbol = symbol
25
+ @error_message = message
26
+ @error_data = data
24
27
  self
25
28
  end
26
29
 
27
30
  # Convert to hash format expected by MCP protocol
28
- def to_h(options = {})
29
- {
30
- content: @contents.map { |c| c.to_h },
31
- isError: @is_error
32
- }
31
+ def to_h
32
+ if @is_error
33
+ JsonRpc::JsonRpcError.new(@symbol, message: @error_message, data: @error_data).to_h
34
+ else
35
+ {
36
+ content: @contents.map { |c| c.to_h },
37
+ }
38
+ end
33
39
  end
34
40
 
35
41
  # Alias as_json to to_h for consistency
@@ -20,9 +20,11 @@ module ActionMCP
20
20
  tool = tool_class.new(arguments)
21
21
 
22
22
  tool.call.to_h
23
+ rescue RegistryBase::NotFound
24
+ error_response(:invalid_params, message: "Tool not found: #{tool_name}")
23
25
  rescue StandardError => e
24
26
  # FIXME, we should maybe not return the error message to the user
25
- error_response([ "Tool execution failed: #{e.message}" ])
27
+ error_response(:invalid_params, message: "Tool execution failed: #{e.message}")
26
28
  end
27
29
 
28
30
  def item_klass
@@ -31,11 +33,9 @@ module ActionMCP
31
33
 
32
34
  private
33
35
 
34
- def error_response(messages)
35
- {
36
- content: messages.map { |msg| Content::Text.new(msg) },
37
- isError: true
38
- }
36
+ def error_response(symbol, message: nil, data: nil)
37
+ response = ToolResponse.new
38
+ response.mark_as_error!(symbol, message: message, data: data)
39
39
  end
40
40
  end
41
41
  end
@@ -7,12 +7,12 @@ module ActionMCP
7
7
  end
8
8
 
9
9
  def send_prompts_get(request_id, prompt_name, params)
10
- send_jsonrpc_response(request_id, result: PromptsRegistry.prompt_call(prompt_name.to_s, params))
11
- rescue RegistryBase::NotFound
12
- send_jsonrpc_response(request_id, error: JsonRpc::JsonRpcError.new(
13
- :method_not_found,
14
- message: "Prompt not found: #{prompt_name}"
15
- ).as_json)
10
+ result = PromptsRegistry.prompt_call(prompt_name.to_s, params)
11
+ if result.is_error
12
+ send_jsonrpc_response(request_id, error: result)
13
+ else
14
+ send_jsonrpc_response(request_id, result:)
15
+ end
16
16
  end
17
17
  end
18
18
  end
@@ -8,12 +8,11 @@ module ActionMCP
8
8
 
9
9
  def send_tools_call(request_id, tool_name, arguments, _meta = {})
10
10
  result = ToolsRegistry.tool_call(tool_name, arguments, _meta)
11
- send_jsonrpc_response(request_id, result: result)
12
- rescue RegistryBase::NotFound
13
- send_jsonrpc_response(request_id, error: JsonRpc::JsonRpcError.new(
14
- :method_not_found,
15
- message: "Tool not found: #{tool_name}"
16
- ).as_json)
11
+ if result.is_error
12
+ send_jsonrpc_response(request_id, error: result)
13
+ else
14
+ send_jsonrpc_response(request_id, result:)
15
+ end
17
16
  end
18
17
  end
19
18
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  require_relative "gem_version"
4
4
  module ActionMCP
5
- VERSION = "0.10.0"
5
+ VERSION = "0.12.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.10.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih