actionmcp 0.4.0 → 0.5.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/Rakefile +1 -0
- data/lib/action_mcp/configuration.rb +25 -9
- data/lib/action_mcp/engine.rb +13 -18
- data/lib/action_mcp/resource_template.rb +57 -64
- data/lib/action_mcp/version.rb +1 -1
- data/lib/action_mcp.rb +19 -0
- 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: a8c8a94933ac8bd63140d48502c583f501779e7e5cdfa60f3d5dbaa095336865
|
4
|
+
data.tar.gz: 714a7e9f4ed1b7db0fa3814bc270be7b0f9fe075ecde6fc2a44d435df3a88e03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7f572402551c7e210f81e9f0dbe7eef5f7344ab17227e4d0b7957329d0442aa11a6d5fe75479c0c65919dbe429e12f6bcb0f0a056c0f1009efcd5d3ade2472c
|
7
|
+
data.tar.gz: 38f6ed89c283df6d4c969b8f5efb88f32e459d8277e813061ef35b92a32de2ecc931abb73c8e1025714acfba455706d6e29d386ffbb3e007593791c0edc9de02
|
data/Rakefile
CHANGED
@@ -15,25 +15,31 @@ module ActionMCP
|
|
15
15
|
# @return [Boolean] Whether to subscribe to resources.
|
16
16
|
# @!attribute logging_level
|
17
17
|
# @return [Symbol] The logging level.
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
:
|
22
|
-
:
|
23
|
-
:logging_level
|
18
|
+
attr_writer :name, :version
|
19
|
+
attr_accessor :logging_enabled, # This is not working yet
|
20
|
+
:list_changed, # This is not working yet
|
21
|
+
:resources_subscribe, # This is not working yet
|
22
|
+
:logging_level # This is not working yet
|
24
23
|
|
25
24
|
# Initializes a new Configuration instance.
|
26
25
|
#
|
27
26
|
# @return [void]
|
27
|
+
|
28
|
+
|
28
29
|
def initialize
|
29
|
-
# Use Rails.application values if available, or fallback to defaults.
|
30
|
-
@name = defined?(Rails) && Rails.respond_to?(:application) && Rails.application.respond_to?(:name) ? Rails.application.name : "ActionMCP"
|
31
|
-
@version = defined?(Rails) && Rails.respond_to?(:application) && Rails.application.respond_to?(:version) ? Rails.application.version.to_s.presence : "0.0.1"
|
32
30
|
@logging_enabled = true
|
33
31
|
@list_changed = false
|
34
32
|
@logging_level = :info
|
35
33
|
end
|
36
34
|
|
35
|
+
def name
|
36
|
+
@name || Rails.application.name
|
37
|
+
end
|
38
|
+
|
39
|
+
def version
|
40
|
+
@version || (has_rails_version ? Rails.application.version.to_s : "0.0.1")
|
41
|
+
end
|
42
|
+
|
37
43
|
# Returns a hash of capabilities.
|
38
44
|
#
|
39
45
|
# @return [Hash] A hash containing the resources capabilities.
|
@@ -48,6 +54,16 @@ module ActionMCP
|
|
48
54
|
capabilities[:resources] = {} if ResourceTemplatesRegistry.non_abstract.any?
|
49
55
|
capabilities
|
50
56
|
end
|
57
|
+
private
|
58
|
+
def has_rails_version
|
59
|
+
begin
|
60
|
+
gem "rails_app_version"
|
61
|
+
require "rails_app_version/railtie"
|
62
|
+
true
|
63
|
+
rescue LoadError
|
64
|
+
false
|
65
|
+
end
|
66
|
+
end
|
51
67
|
end
|
52
68
|
|
53
69
|
class << self
|
data/lib/action_mcp/engine.rb
CHANGED
@@ -13,15 +13,21 @@ module ActionMCP
|
|
13
13
|
inflect.acronym "MCP"
|
14
14
|
end
|
15
15
|
# Provide a configuration namespace for ActionMCP
|
16
|
-
config.action_mcp =
|
16
|
+
config.action_mcp = ActionMCP.configuration
|
17
17
|
|
18
|
-
|
19
|
-
|
18
|
+
# Configure autoloading for the mcp/tools directory
|
19
|
+
initializer "action_mcp.autoloading", before: :set_autoload_paths do |app|
|
20
|
+
mcp_path = app.root.join("app/mcp")
|
21
|
+
|
22
|
+
if mcp_path.exist?
|
23
|
+
# First add the parent mcp directory
|
24
|
+
app.autoloaders.main.push_dir(mcp_path, namespace: Object)
|
20
25
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
26
|
+
# Then collapse the subdirectories to avoid namespacing
|
27
|
+
mcp_path.glob("*").select { |f| File.directory?(f) }.each do |dir|
|
28
|
+
app.autoloaders.main.collapse(dir)
|
29
|
+
end
|
30
|
+
end
|
25
31
|
end
|
26
32
|
|
27
33
|
# Initialize the ActionMCP logger.
|
@@ -30,16 +36,5 @@ module ActionMCP
|
|
30
36
|
self.logger = ::Rails.logger
|
31
37
|
end
|
32
38
|
end
|
33
|
-
|
34
|
-
# Configure autoloading for the mcp/tools directory
|
35
|
-
initializer "action_mcp.autoloading" do |app|
|
36
|
-
mcp_path = Rails.root.join("app/mcp")
|
37
|
-
|
38
|
-
if Dir.exist?(mcp_path)
|
39
|
-
Dir.glob(mcp_path.join("*")).select { |f| File.directory?(f) }.each do |dir|
|
40
|
-
Rails.autoloaders.main.push_dir(dir, namespace: Object)
|
41
|
-
end
|
42
|
-
end
|
43
|
-
end
|
44
39
|
end
|
45
40
|
end
|
@@ -4,70 +4,63 @@ module ActionMCP
|
|
4
4
|
class ResourceTemplate
|
5
5
|
class_attribute :abstract, instance_accessor: false, default: false
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
7
|
+
class << self
|
8
|
+
attr_writer :abstract
|
9
|
+
attr_reader :description, :uri_template, :mime_type, :template_name, :parameters
|
10
|
+
|
11
|
+
def parameter(name, description:, required: false)
|
12
|
+
@parameters ||= {}
|
13
|
+
@parameters[name] = { description: description, required: required }
|
14
|
+
end
|
15
|
+
|
16
|
+
def parameters
|
17
|
+
@parameters || {}
|
18
|
+
end
|
19
|
+
|
20
|
+
def description(value = nil)
|
21
|
+
value ? @description = value : @description
|
22
|
+
end
|
23
|
+
|
24
|
+
def uri_template(value = nil)
|
25
|
+
value ? @uri_template = value : @uri_template
|
26
|
+
end
|
27
|
+
|
28
|
+
def template_name(value = nil)
|
29
|
+
value ? @template_name = value : @template_name
|
30
|
+
end
|
31
|
+
|
32
|
+
def mime_type(value = nil)
|
33
|
+
value ? @mime_type = value : @mime_type
|
34
|
+
end
|
35
|
+
|
36
|
+
def to_h
|
37
|
+
name_value = defined?(@template_name) ? @template_name : name.demodulize.underscore.gsub(/_template$/, "")
|
38
|
+
|
39
|
+
{
|
40
|
+
uriTemplate: @uri_template,
|
41
|
+
name: name_value,
|
42
|
+
description: @description,
|
43
|
+
mimeType: @mime_type
|
44
|
+
}.compact
|
45
|
+
end
|
46
|
+
|
47
|
+
def retrieve(_params)
|
48
|
+
raise NotImplementedError, "Subclasses must implement the retrieve method"
|
49
|
+
end
|
50
|
+
|
51
|
+
def abstract?
|
52
|
+
abstract
|
53
|
+
end
|
54
|
+
|
55
|
+
def abstract!
|
56
|
+
self.abstract = true
|
57
|
+
end
|
58
|
+
|
59
|
+
def capability_name
|
60
|
+
name.demodulize.underscore.sub(/_template$/, "")
|
61
|
+
end
|
37
62
|
end
|
38
63
|
|
39
|
-
|
40
|
-
@template_name = name if name
|
41
|
-
@template_name
|
42
|
-
end
|
43
|
-
|
44
|
-
def self.mime_type(mime_type = nil)
|
45
|
-
return @mime_type unless mime_type
|
46
|
-
@mime_type = mime_type
|
47
|
-
end
|
48
|
-
|
49
|
-
def self.retrieve(_params)
|
50
|
-
raise NotImplementedError, "Subclasses must implement the retrieve method"
|
51
|
-
end
|
52
|
-
|
53
|
-
def self.abstract
|
54
|
-
@abstract_tool ||= false # Default to false, unique to each class
|
55
|
-
end
|
56
|
-
|
57
|
-
def self.abstract=(value)
|
58
|
-
@abstract_tool = value
|
59
|
-
end
|
60
|
-
|
61
|
-
def self.abstract!
|
62
|
-
self.abstract = true
|
63
|
-
end
|
64
|
-
|
65
|
-
def self.abstract?
|
66
|
-
abstract
|
67
|
-
end
|
68
|
-
|
69
|
-
def self.capability_name
|
70
|
-
name.demodulize.underscore.sub(/_template$/, "")
|
71
|
-
end
|
64
|
+
attr_reader :description, :uri_template, :mime_type
|
72
65
|
end
|
73
|
-
end
|
66
|
+
end
|
data/lib/action_mcp/version.rb
CHANGED
data/lib/action_mcp.rb
CHANGED
@@ -8,6 +8,7 @@ require "concurrent"
|
|
8
8
|
require "active_record/railtie"
|
9
9
|
require "action_controller/railtie"
|
10
10
|
require "action_cable/engine"
|
11
|
+
require "action_mcp/configuration"
|
11
12
|
require "action_mcp/engine"
|
12
13
|
require "zeitwerk"
|
13
14
|
|
@@ -31,6 +32,24 @@ module ActionMCP
|
|
31
32
|
require_relative "action_mcp/configuration"
|
32
33
|
PROTOCOL_VERSION = "2024-11-05"
|
33
34
|
|
35
|
+
class << self
|
36
|
+
attr_accessor :server
|
37
|
+
# Returns the configuration instance.
|
38
|
+
#
|
39
|
+
# @return [Configuration] the configuration instance
|
40
|
+
def configuration
|
41
|
+
@configuration ||= Configuration.new
|
42
|
+
end
|
43
|
+
|
44
|
+
# Configures the ActionMCP module.
|
45
|
+
#
|
46
|
+
# @yield [configuration] the configuration instance
|
47
|
+
# @return [void]
|
48
|
+
def configure
|
49
|
+
yield(configuration)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
34
53
|
module_function
|
35
54
|
|
36
55
|
# Returns the tools registry.
|