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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 529a0b8315fdd1d869ab3310d18c9a0ecb316eb3b1b5ab54f13ad93588e55152
4
- data.tar.gz: 1dc90c03f28134264025649f4fa7b4a3ed97d98c7375c437ddcb0548461aa2cd
3
+ metadata.gz: a8c8a94933ac8bd63140d48502c583f501779e7e5cdfa60f3d5dbaa095336865
4
+ data.tar.gz: 714a7e9f4ed1b7db0fa3814bc270be7b0f9fe075ecde6fc2a44d435df3a88e03
5
5
  SHA512:
6
- metadata.gz: 2e7abf47b0ed09eff25c2d2097f4654ae8d4766810f458cad51ab217698a206cbb7375ecaf4b3bd23db70fa6fd31d4c34ac4db6f2ec723187f68deb8bca94e91
7
- data.tar.gz: da41afe6699282401e85b9981c29f0c04906dce1b5574096c456d7508f9866ef6cb396c642c32b3f78e96f68d50c95e7d0077dccc6bd5e1dacf5816d8a1978c8
6
+ metadata.gz: d7f572402551c7e210f81e9f0dbe7eef5f7344ab17227e4d0b7957329d0442aa11a6d5fe75479c0c65919dbe429e12f6bcb0f0a056c0f1009efcd5d3ade2472c
7
+ data.tar.gz: 38f6ed89c283df6d4c969b8f5efb88f32e459d8277e813061ef35b92a32de2ecc931abb73c8e1025714acfba455706d6e29d386ffbb3e007593791c0edc9de02
data/Rakefile CHANGED
@@ -3,5 +3,6 @@
3
3
  require 'bundler/setup'
4
4
 
5
5
  APP_RAKEFILE = File.expand_path('test/dummy/Rakefile', __dir__)
6
+ load "rails/tasks/engine.rake"
6
7
 
7
8
  require 'bundler/gem_tasks'
@@ -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
- attr_accessor :name, :version, :logging_enabled,
19
- # Right now, if enabled, the server will send a listChanged notification for tools, prompts, and resources.
20
- # We can make it more granular in the future, but for now, it's a simple boolean.
21
- :list_changed,
22
- :resources_subscribe,
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
@@ -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 = ActiveSupport::OrderedOptions.new
16
+ config.action_mcp = ActionMCP.configuration
17
17
 
18
- initializer "action_mcp.configure" do |app|
19
- options = app.config.action_mcp.to_h.symbolize_keys
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
- # Override the default configuration if specified in the Rails app.
22
- ActionMCP.configuration.name = options[:name] if options.key?(:name)
23
- ActionMCP.configuration.version = options[:version] if options.key?(:version)
24
- ActionMCP.configuration.logging_enabled = options.fetch(:logging_enabled, true)
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
- attr_reader :description, :uri_template, :mime_type
8
-
9
- def self.parameter(name, description:, required: false)
10
- @parameters ||= {}
11
- @parameters[name] = { description: description, required: required }
12
- end
13
-
14
- def self.parameters
15
- @parameters || {}
16
- end
17
-
18
- def self.description(description = nil)
19
- return @description unless description
20
- @description = description
21
- end
22
-
23
- def self.to_h
24
- name_value = defined?(@template_name) ? @template_name : name.demodulize.underscore.gsub(/_template$/, '')
25
-
26
- {
27
- uriTemplate: @uri_template,
28
- name: name_value,
29
- description: @description,
30
- mimeType: @mime_type
31
- }.compact
32
- end
33
-
34
- def self.uri_template(uri_template = nil)
35
- return @uri_template unless uri_template
36
- @uri_template = uri_template
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
- def self.template_name(name = nil)
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  require_relative "gem_version"
4
4
  module ActionMCP
5
- VERSION = "0.4.0"
5
+ VERSION = "0.5.0"
6
6
 
7
7
  class << self
8
8
  alias version gem_version
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.
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.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih