actionmcp 0.19.1 → 0.22.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/app/controllers/action_mcp/messages_controller.rb +2 -2
- data/app/models/action_mcp/session/message.rb +12 -1
- data/app/models/action_mcp/session.rb +8 -4
- data/lib/action_mcp/base_response.rb +86 -0
- data/lib/action_mcp/capability.rb +2 -3
- data/lib/action_mcp/client/base.rb +222 -0
- data/lib/action_mcp/client/blueprint.rb +227 -0
- data/lib/action_mcp/client/catalog.rb +226 -0
- data/lib/action_mcp/client/json_rpc_handler.rb +109 -0
- data/lib/action_mcp/client/logging.rb +20 -0
- data/lib/action_mcp/{transport → client}/messaging.rb +1 -1
- data/lib/action_mcp/client/prompt_book.rb +183 -0
- data/lib/action_mcp/client/prompts.rb +33 -0
- data/lib/action_mcp/client/resources.rb +70 -0
- data/lib/action_mcp/client/roots.rb +13 -0
- data/lib/action_mcp/client/server.rb +60 -0
- data/lib/action_mcp/{transport → client}/sse_client.rb +70 -111
- data/lib/action_mcp/{transport → client}/stdio_client.rb +38 -38
- data/lib/action_mcp/client/toolbox.rb +236 -0
- data/lib/action_mcp/client/tools.rb +33 -0
- data/lib/action_mcp/client.rb +20 -231
- data/lib/action_mcp/engine.rb +1 -3
- data/lib/action_mcp/instrumentation/controller_runtime.rb +1 -1
- data/lib/action_mcp/instrumentation/instrumentation.rb +2 -0
- data/lib/action_mcp/instrumentation/resource_instrumentation.rb +1 -0
- data/lib/action_mcp/json_rpc_handler_base.rb +106 -0
- data/lib/action_mcp/log_subscriber.rb +2 -0
- data/lib/action_mcp/logging.rb +1 -1
- data/lib/action_mcp/prompt.rb +4 -3
- data/lib/action_mcp/prompt_response.rb +14 -58
- data/lib/action_mcp/{transport → server}/capabilities.rb +2 -2
- data/lib/action_mcp/server/json_rpc_handler.rb +121 -0
- data/lib/action_mcp/server/messaging.rb +28 -0
- data/lib/action_mcp/{transport → server}/notifications.rb +1 -1
- data/lib/action_mcp/{transport → server}/prompts.rb +1 -1
- data/lib/action_mcp/{transport → server}/resources.rb +1 -18
- data/lib/action_mcp/{transport → server}/roots.rb +1 -1
- data/lib/action_mcp/{transport → server}/sampling.rb +1 -1
- data/lib/action_mcp/server/sampling_request.rb +115 -0
- data/lib/action_mcp/{transport → server}/tools.rb +1 -1
- data/lib/action_mcp/server/transport_handler.rb +41 -0
- data/lib/action_mcp/tool_response.rb +14 -59
- data/lib/action_mcp/uri_ambiguity_checker.rb +6 -10
- data/lib/action_mcp/version.rb +1 -1
- data/lib/action_mcp.rb +2 -1
- metadata +30 -33
- data/lib/action_mcp/base_json_rpc_handler.rb +0 -97
- data/lib/action_mcp/client_json_rpc_handler.rb +0 -69
- data/lib/action_mcp/json_rpc_handler.rb +0 -229
- data/lib/action_mcp/sampling_request.rb +0 -113
- data/lib/action_mcp/server_json_rpc_handler.rb +0 -90
- data/lib/action_mcp/transport/transport_base.rb +0 -126
- data/lib/action_mcp/transport_handler.rb +0 -39
@@ -0,0 +1,121 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActionMCP
|
4
|
+
module Server
|
5
|
+
class JsonRpcHandler < JsonRpcHandlerBase
|
6
|
+
protected
|
7
|
+
|
8
|
+
# Handle server-specific methods
|
9
|
+
# @param rpc_method [String]
|
10
|
+
# @param id [String, Integer]
|
11
|
+
# @param params [Hash]
|
12
|
+
def handle_method(rpc_method, id, params)
|
13
|
+
case rpc_method
|
14
|
+
when "initialize" # [SERVER] Client initializing the connection
|
15
|
+
transport.send_capabilities(id, params)
|
16
|
+
when %r{^prompts/} # Prompt-related requests
|
17
|
+
process_prompts(rpc_method, id, params)
|
18
|
+
when %r{^resources/} # Resource-related requests
|
19
|
+
process_resources(rpc_method, id, params)
|
20
|
+
when %r{^tools/} # Tool-related requests
|
21
|
+
process_tools(rpc_method, id, params)
|
22
|
+
when "completion/complete" # Completion requests
|
23
|
+
process_completion_complete(id, params)
|
24
|
+
else
|
25
|
+
puts "\e[31mUnknown client method: #{rpc_method}\e[0m"
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
# Server methods (client → server)
|
30
|
+
|
31
|
+
# @param id [String]
|
32
|
+
# @param params [Hash]
|
33
|
+
# @example {
|
34
|
+
# "ref": {
|
35
|
+
# "type": "ref/prompt",
|
36
|
+
# "name": "code_review"
|
37
|
+
# },
|
38
|
+
# "argument": {
|
39
|
+
# "name": "language",
|
40
|
+
# "value": "py"
|
41
|
+
# }
|
42
|
+
# }
|
43
|
+
# @return [Hash]
|
44
|
+
# @example {
|
45
|
+
# "completion": {
|
46
|
+
# "values": ["python", "pytorch", "pyside"],
|
47
|
+
# "total": 10,
|
48
|
+
# "hasMore": true
|
49
|
+
# }
|
50
|
+
# }
|
51
|
+
def process_completion_complete(id, params)
|
52
|
+
# TODO: Not Implemented, but to remove the error message in the inspector
|
53
|
+
transport.send_jsonrpc_response(id, result: { completion: { values: [], total: 0, hasMore: false } })
|
54
|
+
case params["ref"]["type"]
|
55
|
+
when "ref/prompt"
|
56
|
+
# TODO: Implement completion
|
57
|
+
when "ref/resource"
|
58
|
+
# TODO: Implement completion
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
# @param rpc_method [String]
|
63
|
+
# @param id [String]
|
64
|
+
# @param params [Hash]
|
65
|
+
def process_prompts(rpc_method, id, params)
|
66
|
+
case rpc_method
|
67
|
+
when "prompts/get" # Get specific prompt
|
68
|
+
transport.send_prompts_get(id, params["name"], params["arguments"])
|
69
|
+
when "prompts/list" # List available prompts
|
70
|
+
transport.send_prompts_list(id)
|
71
|
+
else
|
72
|
+
Rails.logger.warn("Unknown prompts method: #{rpc_method}")
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
# @param rpc_method [String]
|
77
|
+
# @param id [String]
|
78
|
+
# @param params [Hash]
|
79
|
+
def process_tools(rpc_method, id, params)
|
80
|
+
case rpc_method
|
81
|
+
when "tools/list" # List available tools
|
82
|
+
transport.send_tools_list(id)
|
83
|
+
when "tools/call" # Call a tool
|
84
|
+
transport.send_tools_call(id, params["name"], params["arguments"])
|
85
|
+
else
|
86
|
+
Rails.logger.warn("Unknown tools method: #{rpc_method}")
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
# @param rpc_method [String]
|
91
|
+
# @param id [String]
|
92
|
+
# @param params [Hash]
|
93
|
+
def process_resources(rpc_method, id, params)
|
94
|
+
case rpc_method
|
95
|
+
when "resources/list" # List available resources
|
96
|
+
transport.send_resources_list(id)
|
97
|
+
when "resources/templates/list" # List resource templates
|
98
|
+
transport.send_resource_templates_list(id)
|
99
|
+
when "resources/read" # Read resource content
|
100
|
+
transport.send_resource_read(id, params)
|
101
|
+
when "resources/subscribe" # Subscribe to resource updates
|
102
|
+
transport.send_resource_subscribe(id, params["uri"])
|
103
|
+
when "resources/unsubscribe" # Unsubscribe from resource updates
|
104
|
+
transport.send_resource_unsubscribe(id, params["uri"])
|
105
|
+
else
|
106
|
+
Rails.logger.warn("Unknown resources method: #{rpc_method}")
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
def process_notifications(rpc_method, params)
|
111
|
+
case rpc_method
|
112
|
+
when "notifications/initialized" # Client initialization complete
|
113
|
+
puts "\e[31mInitialized\e[0m"
|
114
|
+
transport.initialize!
|
115
|
+
else
|
116
|
+
super
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActionMCP
|
4
|
+
module Server
|
5
|
+
module Messaging
|
6
|
+
def send_jsonrpc_request(method, params: nil, id: SecureRandom.uuid_v7)
|
7
|
+
request = JsonRpc::Request.new(id: id, method: method, params: params)
|
8
|
+
write_message(request)
|
9
|
+
end
|
10
|
+
|
11
|
+
def send_jsonrpc_response(request_id, result: nil, error: nil)
|
12
|
+
response = JsonRpc::Response.new(id: request_id, result: result, error: error)
|
13
|
+
write_message(response)
|
14
|
+
end
|
15
|
+
|
16
|
+
def send_jsonrpc_notification(method, params = nil)
|
17
|
+
notification = JsonRpc::Notification.new(method: method, params: params)
|
18
|
+
write_message(notification)
|
19
|
+
end
|
20
|
+
|
21
|
+
def send_jsonrpc_error(request_id, symbol, message, data = nil)
|
22
|
+
error = JsonRpc::JsonRpcError.new(symbol, message:, data:)
|
23
|
+
response = JsonRpc::Response.new(id: request_id, error:)
|
24
|
+
write_message(response)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module ActionMCP
|
4
|
-
module
|
4
|
+
module Server
|
5
5
|
module Resources
|
6
6
|
# Send list of available resources to the client
|
7
7
|
#
|
@@ -61,23 +61,6 @@ module ActionMCP
|
|
61
61
|
end
|
62
62
|
end
|
63
63
|
|
64
|
-
def send_resource_subscribe(id, uri)
|
65
|
-
session.resource_subscribe(uri)
|
66
|
-
send_jsonrpc_response(id, result: {})
|
67
|
-
end
|
68
|
-
|
69
|
-
def send_resource_unsubscribe(id, uri)
|
70
|
-
session.resource_unsubscribe(uri)
|
71
|
-
send_jsonrpc_response(id, result: {})
|
72
|
-
end
|
73
|
-
|
74
|
-
# Client logging
|
75
|
-
def set_client_logging_level(id, level)
|
76
|
-
# Store the client's preferred log level
|
77
|
-
@client_log_level = level
|
78
|
-
send_jsonrpc_response(id, result: {})
|
79
|
-
end
|
80
|
-
|
81
64
|
private
|
82
65
|
|
83
66
|
# Log all registered resource templates
|
@@ -0,0 +1,115 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActionMCP
|
4
|
+
module Server
|
5
|
+
class SamplingRequest
|
6
|
+
class << self
|
7
|
+
attr_reader :default_messages, :default_system_prompt, :default_context,
|
8
|
+
:default_model_hints, :default_intelligence_priority,
|
9
|
+
:default_max_tokens, :default_temperature
|
10
|
+
|
11
|
+
def configure
|
12
|
+
yield self
|
13
|
+
end
|
14
|
+
|
15
|
+
def messages(messages = nil)
|
16
|
+
if messages
|
17
|
+
@default_messages = messages.map do |msg|
|
18
|
+
mutate_content(msg)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
@messages ||= []
|
22
|
+
end
|
23
|
+
|
24
|
+
def system_prompt(prompt = nil)
|
25
|
+
@default_system_prompt = prompt if prompt
|
26
|
+
@default_system_prompt
|
27
|
+
end
|
28
|
+
|
29
|
+
def include_context(context = nil)
|
30
|
+
@default_context = context if context
|
31
|
+
@default_context
|
32
|
+
end
|
33
|
+
|
34
|
+
def model_hints(hints = nil)
|
35
|
+
@default_model_hints = hints if hints
|
36
|
+
@model_hints ||= []
|
37
|
+
end
|
38
|
+
|
39
|
+
def intelligence_priority(priority = nil)
|
40
|
+
@default_intelligence_priority = priority if priority
|
41
|
+
@intelligence_priority ||= 0.9
|
42
|
+
end
|
43
|
+
|
44
|
+
def max_tokens(tokens = nil)
|
45
|
+
@default_max_tokens = tokens if tokens
|
46
|
+
@max_tokens ||= 500
|
47
|
+
end
|
48
|
+
|
49
|
+
def temperature(temp = nil)
|
50
|
+
@default_temperature = temp if temp
|
51
|
+
@temperature ||= 0.7
|
52
|
+
end
|
53
|
+
|
54
|
+
private
|
55
|
+
|
56
|
+
def mutate_content(msg)
|
57
|
+
content = msg[:content]
|
58
|
+
if content.is_a?(ActionMCP::Content) || (content.respond_to?(:to_h) && !content.is_a?(Hash))
|
59
|
+
{ role: msg[:role], content: content.to_h }
|
60
|
+
else
|
61
|
+
msg
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
attr_accessor :system_prompt, :model_hints, :intelligence_priority, :max_tokens, :temperature
|
67
|
+
attr_reader :messages, :context
|
68
|
+
|
69
|
+
def initialize
|
70
|
+
@messages = self.class.default_messages.dup
|
71
|
+
@system_prompt = self.class.default_system_prompt
|
72
|
+
@context = self.class.default_context
|
73
|
+
@model_hints = self.class.default_model_hints.dup
|
74
|
+
@intelligence_priority = self.class.default_intelligence_priority
|
75
|
+
@max_tokens = self.class.default_max_tokens
|
76
|
+
@temperature = self.class.default_temperature
|
77
|
+
|
78
|
+
yield self if block_given?
|
79
|
+
end
|
80
|
+
|
81
|
+
def messages=(value)
|
82
|
+
@messages = value.map do |msg|
|
83
|
+
self.class.send(:mutate_content, msg)
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
def include_context=(value)
|
88
|
+
@context = value
|
89
|
+
end
|
90
|
+
|
91
|
+
def add_message(content, role: "user")
|
92
|
+
if content.is_a?(Content::Base) || (content.respond_to?(:to_h) && !content.is_a?(Hash))
|
93
|
+
@messages << { role: role, content: content.to_h }
|
94
|
+
else
|
95
|
+
content = Content::Text.new(content).to_h if content.is_a?(String)
|
96
|
+
@messages << { role: role, content: content }
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
def to_h
|
101
|
+
{
|
102
|
+
messages: messages.map { |msg| { role: msg[:role], content: msg[:content] } },
|
103
|
+
systemPrompt: system_prompt,
|
104
|
+
includeContext: context,
|
105
|
+
modelPreferences: {
|
106
|
+
hints: model_hints.map { |name| { name: name } },
|
107
|
+
intelligencePriority: intelligence_priority
|
108
|
+
},
|
109
|
+
maxTokens: max_tokens,
|
110
|
+
temperature: temperature
|
111
|
+
}.compact
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActionMCP
|
4
|
+
module Server
|
5
|
+
class TransportHandler
|
6
|
+
attr_reader :session
|
7
|
+
|
8
|
+
delegate :initialize!, :initialized?, to: :session
|
9
|
+
delegate :read, :write, to: :session
|
10
|
+
include Logging
|
11
|
+
|
12
|
+
include Messaging
|
13
|
+
include Capabilities
|
14
|
+
include Tools
|
15
|
+
include Prompts
|
16
|
+
include Resources
|
17
|
+
include Notifications
|
18
|
+
include Sampling
|
19
|
+
include Roots
|
20
|
+
|
21
|
+
# @param [ActionMCP::Session] session
|
22
|
+
def initialize(session)
|
23
|
+
@session = session
|
24
|
+
end
|
25
|
+
|
26
|
+
def send_pong(request_id)
|
27
|
+
send_jsonrpc_response(request_id, result: {})
|
28
|
+
end
|
29
|
+
|
30
|
+
private
|
31
|
+
|
32
|
+
def write_message(data)
|
33
|
+
session.write(data)
|
34
|
+
end
|
35
|
+
|
36
|
+
def format_registry_items(registry)
|
37
|
+
registry.map { |item| item.klass.to_h }
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -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
|
-
|
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
|
-
#
|
23
|
-
def
|
24
|
-
|
25
|
-
|
26
|
-
|
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
|
-
#
|
32
|
-
def
|
33
|
-
|
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
|
-
#
|
43
|
-
|
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
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActionMCP
|
2
4
|
module UriAmbiguityChecker
|
3
5
|
extend ActiveSupport::Concern
|
@@ -17,9 +19,7 @@ module ActionMCP
|
|
17
19
|
segments2 = pattern2.split("/")
|
18
20
|
|
19
21
|
# If different number of segments, they can't be ambiguous
|
20
|
-
if segments1.size != segments2.size
|
21
|
-
return false
|
22
|
-
end
|
22
|
+
return false if segments1.size != segments2.size
|
23
23
|
|
24
24
|
# Extract literals (non-parameters) from each pattern
|
25
25
|
literals1 = []
|
@@ -34,14 +34,12 @@ module ActionMCP
|
|
34
34
|
end
|
35
35
|
|
36
36
|
# Check each segment for direct literal mismatches
|
37
|
-
segments1.zip(segments2).each_with_index do |(seg1, seg2),
|
37
|
+
segments1.zip(segments2).each_with_index do |(seg1, seg2), _index|
|
38
38
|
param1 = parameter?(seg1)
|
39
39
|
param2 = parameter?(seg2)
|
40
40
|
|
41
41
|
# When both segments are literals, they must match exactly
|
42
|
-
if !param1 && !param2 && seg1 != seg2
|
43
|
-
return false
|
44
|
-
end
|
42
|
+
return false if !param1 && !param2 && seg1 != seg2
|
45
43
|
end
|
46
44
|
|
47
45
|
# Check for structural incompatibility in the literals
|
@@ -60,9 +58,7 @@ module ActionMCP
|
|
60
58
|
common_literal_indices2 = common_literals.map { |lit| lit_values2.index(lit) }
|
61
59
|
|
62
60
|
# If the relative ordering is different, patterns are not ambiguous
|
63
|
-
if common_literal_indices1 != common_literal_indices2
|
64
|
-
return false
|
65
|
-
end
|
61
|
+
return false if common_literal_indices1 != common_literal_indices2
|
66
62
|
end
|
67
63
|
end
|
68
64
|
|
data/lib/action_mcp/version.rb
CHANGED
data/lib/action_mcp.rb
CHANGED
@@ -30,6 +30,7 @@ end.setup
|
|
30
30
|
|
31
31
|
module ActionMCP
|
32
32
|
require_relative "action_mcp/version"
|
33
|
+
require_relative "action_mcp/client"
|
33
34
|
include Logging
|
34
35
|
PROTOCOL_VERSION = "2024-11-05"
|
35
36
|
|
@@ -86,6 +87,6 @@ module ActionMCP
|
|
86
87
|
ActiveModel::Type.register(:integer_array, IntegerArray)
|
87
88
|
end
|
88
89
|
|
89
|
-
ActiveSupport.on_load(:action_mcp) do
|
90
|
+
ActiveSupport.on_load(:action_mcp, run_once: true) do
|
90
91
|
self.logger = ::Rails.logger
|
91
92
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: actionmcp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Abdelkader Boudih
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actioncable
|
@@ -38,20 +38,6 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 8.0.1
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: faraday
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '2.0'
|
48
|
-
type: :runtime
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '2.0'
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
42
|
name: multi_json
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,11 +108,25 @@ files:
|
|
122
108
|
- db/migrate/20250316005649_create_action_mcp_session_resources.rb
|
123
109
|
- exe/actionmcp_cli
|
124
110
|
- lib/action_mcp.rb
|
125
|
-
- lib/action_mcp/
|
111
|
+
- lib/action_mcp/base_response.rb
|
126
112
|
- lib/action_mcp/callbacks.rb
|
127
113
|
- lib/action_mcp/capability.rb
|
128
114
|
- lib/action_mcp/client.rb
|
129
|
-
- lib/action_mcp/
|
115
|
+
- lib/action_mcp/client/base.rb
|
116
|
+
- lib/action_mcp/client/blueprint.rb
|
117
|
+
- lib/action_mcp/client/catalog.rb
|
118
|
+
- lib/action_mcp/client/json_rpc_handler.rb
|
119
|
+
- lib/action_mcp/client/logging.rb
|
120
|
+
- lib/action_mcp/client/messaging.rb
|
121
|
+
- lib/action_mcp/client/prompt_book.rb
|
122
|
+
- lib/action_mcp/client/prompts.rb
|
123
|
+
- lib/action_mcp/client/resources.rb
|
124
|
+
- lib/action_mcp/client/roots.rb
|
125
|
+
- lib/action_mcp/client/server.rb
|
126
|
+
- lib/action_mcp/client/sse_client.rb
|
127
|
+
- lib/action_mcp/client/stdio_client.rb
|
128
|
+
- lib/action_mcp/client/toolbox.rb
|
129
|
+
- lib/action_mcp/client/tools.rb
|
130
130
|
- lib/action_mcp/configuration.rb
|
131
131
|
- lib/action_mcp/content.rb
|
132
132
|
- lib/action_mcp/content/audio.rb
|
@@ -144,7 +144,7 @@ files:
|
|
144
144
|
- lib/action_mcp/json_rpc/notification.rb
|
145
145
|
- lib/action_mcp/json_rpc/request.rb
|
146
146
|
- lib/action_mcp/json_rpc/response.rb
|
147
|
-
- lib/action_mcp/
|
147
|
+
- lib/action_mcp/json_rpc_handler_base.rb
|
148
148
|
- lib/action_mcp/log_subscriber.rb
|
149
149
|
- lib/action_mcp/logging.rb
|
150
150
|
- lib/action_mcp/prompt.rb
|
@@ -156,27 +156,24 @@ files:
|
|
156
156
|
- lib/action_mcp/resource_callbacks.rb
|
157
157
|
- lib/action_mcp/resource_template.rb
|
158
158
|
- lib/action_mcp/resource_templates_registry.rb
|
159
|
-
- lib/action_mcp/sampling_request.rb
|
160
159
|
- lib/action_mcp/server.rb
|
161
|
-
- lib/action_mcp/
|
160
|
+
- lib/action_mcp/server/capabilities.rb
|
161
|
+
- lib/action_mcp/server/json_rpc_handler.rb
|
162
|
+
- lib/action_mcp/server/messaging.rb
|
163
|
+
- lib/action_mcp/server/notifications.rb
|
164
|
+
- lib/action_mcp/server/prompts.rb
|
165
|
+
- lib/action_mcp/server/resources.rb
|
166
|
+
- lib/action_mcp/server/roots.rb
|
167
|
+
- lib/action_mcp/server/sampling.rb
|
168
|
+
- lib/action_mcp/server/sampling_request.rb
|
169
|
+
- lib/action_mcp/server/tools.rb
|
170
|
+
- lib/action_mcp/server/transport_handler.rb
|
162
171
|
- lib/action_mcp/string_array.rb
|
163
172
|
- lib/action_mcp/test_helper.rb
|
164
173
|
- lib/action_mcp/tool.rb
|
165
174
|
- lib/action_mcp/tool_response.rb
|
166
175
|
- lib/action_mcp/tools_registry.rb
|
167
176
|
- lib/action_mcp/transport.rb
|
168
|
-
- lib/action_mcp/transport/capabilities.rb
|
169
|
-
- lib/action_mcp/transport/messaging.rb
|
170
|
-
- lib/action_mcp/transport/notifications.rb
|
171
|
-
- lib/action_mcp/transport/prompts.rb
|
172
|
-
- lib/action_mcp/transport/resources.rb
|
173
|
-
- lib/action_mcp/transport/roots.rb
|
174
|
-
- lib/action_mcp/transport/sampling.rb
|
175
|
-
- lib/action_mcp/transport/sse_client.rb
|
176
|
-
- lib/action_mcp/transport/stdio_client.rb
|
177
|
-
- lib/action_mcp/transport/tools.rb
|
178
|
-
- lib/action_mcp/transport/transport_base.rb
|
179
|
-
- lib/action_mcp/transport_handler.rb
|
180
177
|
- lib/action_mcp/uri_ambiguity_checker.rb
|
181
178
|
- lib/action_mcp/version.rb
|
182
179
|
- lib/actionmcp.rb
|