actionmcp 0.4.0 → 0.5.1

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: 2a6e51c000b677de70fd80f03788ba8334fc9e65bf7ad9344aea0bab75aebbdf
4
+ data.tar.gz: 3205256c52a5bf43316ac17c1c50634df3afb138c72b68994db071ac8a15722f
5
5
  SHA512:
6
- metadata.gz: 2e7abf47b0ed09eff25c2d2097f4654ae8d4766810f458cad51ab217698a206cbb7375ecaf4b3bd23db70fa6fd31d4c34ac4db6f2ec723187f68deb8bca94e91
7
- data.tar.gz: da41afe6699282401e85b9981c29f0c04906dce1b5574096c456d7508f9866ef6cb396c642c32b3f78e96f68d50c95e7d0077dccc6bd5e1dacf5816d8a1978c8
6
+ metadata.gz: af4c15acb851edb2906b9a6b164ed0abf54bb2cb2ad96752c907779f51d805c7a8835775e569b367341fa1d219a74581283680876fc261ab179ce782d5fc677f
7
+ data.tar.gz: fc5953ed45ceeea4ae7038134bea63b6fee0ed36e90bb9f3bd1b1bdb6397f6a3ac7e5875f85f458fae4155135405e481f78c24df37d63a5b565bdc2d40e0706e
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'
@@ -10,7 +10,6 @@ module ActionMCP
10
10
 
11
11
  class_attribute :_capability_name, instance_accessor: false
12
12
  class_attribute :_description, instance_accessor: false, default: ""
13
- class_attribute :abstract_tool, instance_accessor: false, default: false
14
13
 
15
14
  # use _capability_name or default_capability_name
16
15
  def self.capability_name
@@ -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
@@ -2,72 +2,67 @@
2
2
 
3
3
  module ActionMCP
4
4
  class ResourceTemplate
5
- class_attribute :abstract, instance_accessor: false, default: false
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
37
- end
38
-
39
- def self.template_name(name = nil)
40
- @template_name = name if name
41
- @template_name
5
+ class << self
6
+ def abstract?
7
+ @abstract ||= false
8
+ end
9
+
10
+ def abstract!
11
+ @abstract = true
12
+ end
13
+
14
+ def inherited(subclass)
15
+ super
16
+ subclass.instance_variable_set(:@abstract, false)
17
+ end
18
+
19
+ attr_reader :description, :uri_template, :mime_type, :template_name, :parameters
20
+
21
+ def parameter(name, description:, required: false)
22
+ @parameters ||= {}
23
+ @parameters[name] = { description: description, required: required }
24
+ end
25
+
26
+ def parameters
27
+ @parameters || {}
28
+ end
29
+
30
+ def description(value = nil)
31
+ value ? @description = value : @description
32
+ end
33
+
34
+ def uri_template(value = nil)
35
+ value ? @uri_template = value : @uri_template
36
+ end
37
+
38
+ def template_name(value = nil)
39
+ value ? @template_name = value : @template_name
40
+ end
41
+
42
+ def mime_type(value = nil)
43
+ value ? @mime_type = value : @mime_type
44
+ end
45
+
46
+ def to_h
47
+ name_value = defined?(@template_name) ? @template_name : name.demodulize.underscore.gsub(/_template$/, "")
48
+
49
+ {
50
+ uriTemplate: @uri_template,
51
+ name: name_value,
52
+ description: @description,
53
+ mimeType: @mime_type
54
+ }.compact
55
+ end
56
+
57
+ def retrieve(_params)
58
+ raise NotImplementedError, "Subclasses must implement the retrieve method"
59
+ end
60
+
61
+ def capability_name
62
+ name.demodulize.underscore.sub(/_template$/, "")
63
+ end
42
64
  end
43
65
 
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
66
+ attr_reader :description, :uri_template, :mime_type
72
67
  end
73
- end
68
+ 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.1"
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.
@@ -1,3 +1,3 @@
1
- class MCPResourceTemplate < ActionMcp::ResourceTemplate
1
+ class MCPResourceTemplate < ActionMCP::ResourceTemplate
2
2
  abstract!
3
3
  end
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.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih