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 +4 -4
- data/db/migrate/20250308122801_create_action_mcp_sessions.rb +30 -0
- data/lib/action_mcp/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15695f4c672c4af6d7b6114a92d395af80f012da1221815237d12dd21d1dee31
|
4
|
+
data.tar.gz: 5c446ff697530b0600e0a176360de1653536e86eadff979a35149bf62821c4d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/lib/action_mcp/version.rb
CHANGED
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.
|
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
|