actionmcp 0.2.5 → 0.3.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: 60e4539fb902676529e53c949552d94deee59d23c4bade8b0f7cbd65f639fc23
4
- data.tar.gz: 3bd3d5c01abbaf88f0e45e348f81ffe3aa3170c748e22a198c025af3e0fef146
3
+ metadata.gz: 42a6f6ad112f762c4721ee472efd560bc3d67ccba63e0c738ef8fa34389dd98d
4
+ data.tar.gz: 9d095dad87a5275cb42faa802a839da3d21c435ba4c6f6222579c2db5cb09523
5
5
  SHA512:
6
- metadata.gz: aa892c898a93934af62ab31f729602696b522516d041f2951e11b64bd02f375419c552b2e481b1743dc95632ba31092c5f8358e12001e2a26c47af1dfb57d334
7
- data.tar.gz: dcb0d1ea6dedf6e845dc6279b58158007bc950687cdb8ceb8c1a1457f8280a8aa8c4a10f4f1cf1d8da54f7b4a26952dd62753ab2786654c4d0e15d7b0c8ab379
6
+ metadata.gz: 39b63323aa753e1fd8acaa31654fae037fef84a41810d85c9a759d9b8a78b1e93de66e4a8cc170652bfefde726c73bbdb3f42c34d2c611ed589b6e16d8d66bbd
7
+ data.tar.gz: 471eb542dfb0516b4cccd50a9c50de1346da2b5b0365f50ecaa77aaf1a0670f1982c5ddda218a844bcc3446e2d26cc0e8cb64dc4a144d47eeee04d9c81692d10
data/README.md CHANGED
@@ -91,8 +91,8 @@ bin/rails generate action_mcp:install
91
91
  ```
92
92
 
93
93
  This command will create:
94
- - `app/prompts/application_prompt.rb`
95
- - `app/tools/application_tool.rb`
94
+ - `app/mcp/prompts/application_prompt.rb`
95
+ - `app/mcp/tools/application_tool.rb`
96
96
 
97
97
  #### Generate a New Prompt
98
98
 
@@ -102,7 +102,7 @@ Run the following command to generate a new prompt class:
102
102
  bin/rails generate action_mcp:prompt AnalyzeCode
103
103
  ```
104
104
 
105
- This command will create a file at `app/prompts/analyze_code_prompt.rb` with content similar to:
105
+ This command will create a file at `app/mcp/prompts/analyze_code_prompt.rb` with content similar to:
106
106
 
107
107
  ```ruby
108
108
  class AnalyzeCodePrompt < ApplicationPrompt
@@ -134,7 +134,7 @@ Similarly, run the following command to generate a new tool class:
134
134
  bin/rails generate action_mcp:tool CalculateSum
135
135
  ```
136
136
 
137
- This command will create a file at `app/tools/calculate_sum_tool.rb` with content similar to:
137
+ This command will create a file at `app/mcp/tools/calculate_sum_tool.rb` with content similar to:
138
138
 
139
139
  ```ruby
140
140
  class CalculateSumTool < ApplicationTool
@@ -0,0 +1,30 @@
1
+ class CreateActionMCPSessions < ActiveRecord::Migration[8.0]
2
+ def change
3
+ create_table :action_mcp_sessions, id: :string do |t|
4
+ t.string :role, null: false, default: "server", comment: "The role of the session"
5
+ t.string :status, null: false, default: "pre_initialize"
6
+ t.datetime :ended_at, comment: "The time the session ended"
7
+ t.string :protocol_version
8
+ t.jsonb :server_capabilities, comment: "The capabilities of the server"
9
+ t.jsonb :client_capabilities, comment: "The capabilities of the client"
10
+ t.jsonb :server_info, comment: "The information about the server"
11
+ t.jsonb :client_info, comment: "The information about the client"
12
+ t.boolean :initialized, null: false, default: false
13
+ t.integer :messages_count, null: false, default: 0
14
+ t.timestamps
15
+ end
16
+
17
+ create_table :action_mcp_session_messages do |t|
18
+ t.references :session, null: false, foreign_key: { to_table: :action_mcp_sessions,
19
+ on_delete: :cascade,
20
+ on_update: :cascade,
21
+ name: "fk_action_mcp_session_messages_session_id" }, type: :string
22
+ t.string :direction, null: false, comment: "The session direction", default: "client"
23
+ t.string :message_type, null: false, comment: "The type of the message"
24
+ t.string :jsonrpc_id
25
+ t.string :message_text
26
+ t.jsonb :message_json
27
+ t.timestamps
28
+ end
29
+ end
30
+ end
@@ -30,5 +30,16 @@ module ActionMCP
30
30
  self.logger = ::Rails.logger
31
31
  end
32
32
  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
33
44
  end
34
45
  end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActionMCP
4
+ module Transport
5
+ module Resources
6
+ def send_resources_list(request_id)
7
+ send_jsonrpc_response(request_id, result: { resources: [] })
8
+ end
9
+
10
+ def send_resource_templates_list(request_id)
11
+ send_jsonrpc_response(request_id, result: { templates: [] })
12
+ end
13
+
14
+ def send_resource_read(id, params)
15
+ send_jsonrpc_response(id, result: {})
16
+ end
17
+ end
18
+ end
19
+ end
@@ -10,6 +10,7 @@ module ActionMCP
10
10
  include Transport::Capabilities
11
11
  include Transport::Tools
12
12
  include Transport::Prompts
13
+ include Transport::Resources
13
14
  include Transport::Messaging
14
15
 
15
16
  HEARTBEAT_INTERVAL = 15 # seconds
@@ -2,7 +2,7 @@
2
2
 
3
3
  require_relative "gem_version"
4
4
  module ActionMCP
5
- VERSION = "0.2.5"
5
+ VERSION = "0.3.0"
6
6
 
7
7
  class << self
8
8
  alias version gem_version
@@ -7,11 +7,11 @@ module ActionMCP
7
7
  source_root File.expand_path("templates", __dir__)
8
8
  desc "Installs both ApplicationPrompt and ApplicationTool"
9
9
  def create_application_prompt
10
- template "application_prompt.rb", "app/prompts/application_prompt.rb"
10
+ template "application_prompt.rb", "app/mcp/prompts/application_prompt.rb"
11
11
  end
12
12
 
13
13
  def create_application_tool
14
- template "application_tool.rb", "app/tools/application_tool.rb"
14
+ template "application_tool.rb", "app/mcp/tools/application_tool.rb"
15
15
  end
16
16
  end
17
17
  end
@@ -5,13 +5,13 @@ module ActionMCP
5
5
  class PromptGenerator < Rails::Generators::Base
6
6
  namespace "action_mcp:prompt"
7
7
  source_root File.expand_path("templates", __dir__)
8
- desc "Creates a Prompt (in app/prompts) that inherits from ApplicationPrompt"
8
+ desc "Creates a Prompt (in app/mcp/prompts) that inherits from ApplicationPrompt"
9
9
 
10
10
  # The generator takes one argument, e.g. "AnalyzeCode"
11
11
  argument :name, type: :string, required: true, banner: "PromptName"
12
12
 
13
13
  def create_prompt_file
14
- template "prompt.rb.erb", "app/prompts/#{file_name}.rb"
14
+ template "prompt.rb.erb", "app/mcp/prompts/#{file_name}.rb"
15
15
  end
16
16
 
17
17
  private
@@ -5,13 +5,13 @@ module ActionMCP
5
5
  class ToolGenerator < Rails::Generators::Base
6
6
  namespace "action_mcp:tool"
7
7
  source_root File.expand_path("templates", __dir__)
8
- desc "Creates a Tool (in app/tools) that inherits from ApplicationTool"
8
+ desc "Creates a Tool (in app/mcp/tools) that inherits from ApplicationTool"
9
9
 
10
10
  # The generator takes one argument, e.g. "CalculateSum"
11
11
  argument :name, type: :string, required: true, banner: "ToolName"
12
12
 
13
13
  def create_tool_file
14
- template "tool.rb.erb", "app/tools/#{file_name}.rb"
14
+ template "tool.rb.erb", "app/mcp/tools/#{file_name}.rb"
15
15
  end
16
16
 
17
17
  private
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmcp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-03-12 00:00:00.000000000 Z
10
+ date: 2025-03-13 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: railties
@@ -113,6 +113,7 @@ files:
113
113
  - app/models/action_mcp/session.rb
114
114
  - app/models/action_mcp/session/message.rb
115
115
  - config/routes.rb
116
+ - db/migrate/20250308122801_create_action_mcp_sessions.rb
116
117
  - exe/actionmcp_cli
117
118
  - lib/action_mcp.rb
118
119
  - lib/action_mcp/capability.rb
@@ -146,6 +147,7 @@ files:
146
147
  - lib/action_mcp/transport/capabilities.rb
147
148
  - lib/action_mcp/transport/messaging.rb
148
149
  - lib/action_mcp/transport/prompts.rb
150
+ - lib/action_mcp/transport/resources.rb
149
151
  - lib/action_mcp/transport/sse_client.rb
150
152
  - lib/action_mcp/transport/stdio_client.rb
151
153
  - lib/action_mcp/transport/tools.rb