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 +4 -4
- data/lib/action_mcp/json_rpc_handler.rb +2 -0
- data/lib/action_mcp/prompt_response.rb +2 -3
- data/lib/action_mcp/prompts_registry.rb +1 -14
- data/lib/action_mcp/tool.rb +2 -4
- data/lib/action_mcp/tool_response.rb +12 -6
- data/lib/action_mcp/tools_registry.rb +6 -6
- data/lib/action_mcp/transport/prompts.rb +6 -6
- data/lib/action_mcp/transport/tools.rb +5 -6
- data/lib/action_mcp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4b4a90666d6b9f71c78a0c49373d75bd4c2007de573f8af3c37d621c4bfaf0c
|
4
|
+
data.tar.gz: 7c97ab30f559374971ca38e1f8aad6ecd6e54d5251891ba398277eaee53408c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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
|
data/lib/action_mcp/tool.rb
CHANGED
@@ -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
|
29
|
-
|
30
|
-
|
31
|
-
|
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(
|
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(
|
35
|
-
|
36
|
-
|
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
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
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
|
-
|
12
|
-
|
13
|
-
|
14
|
-
:
|
15
|
-
|
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
|
data/lib/action_mcp/version.rb
CHANGED