actionmcp 0.2.5 → 0.2.6

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: 15695f4c672c4af6d7b6114a92d395af80f012da1221815237d12dd21d1dee31
4
+ data.tar.gz: 5c446ff697530b0600e0a176360de1653536e86eadff979a35149bf62821c4d1
5
5
  SHA512:
6
- metadata.gz: aa892c898a93934af62ab31f729602696b522516d041f2951e11b64bd02f375419c552b2e481b1743dc95632ba31092c5f8358e12001e2a26c47af1dfb57d334
7
- data.tar.gz: dcb0d1ea6dedf6e845dc6279b58158007bc950687cdb8ceb8c1a1457f8280a8aa8c4a10f4f1cf1d8da54f7b4a26952dd62753ab2786654c4d0e15d7b0c8ab379
6
+ metadata.gz: 936f8873dcb2fb25fd57880107d768672655a1c75df41fb26f7a7d9be34f3bff289bb671afff31a5dcef4a8aca3398413622791b2c6c1ad1cc2429209fc5ac8f
7
+ data.tar.gz: 81e347ed22f4f2d2fa6bb0d6bbb91e7c1b3a89b2295b5635872e4f90107183b5dab658cb20973e41c080977e361a90a16b1cf7ca582947600f70050abf060901
@@ -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
@@ -2,7 +2,7 @@
2
2
 
3
3
  require_relative "gem_version"
4
4
  module ActionMCP
5
- VERSION = "0.2.5"
5
+ VERSION = "0.2.6"
6
6
 
7
7
  class << self
8
8
  alias version gem_version
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.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih
@@ -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