Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
be7c92d
chore(deps): update sidekiq and sidekiq-cron dependencies to latest v…
ornsteinfilip Jan 22, 2026
c7b2d3b
chore(deps): add connection_pool dependency to gemspec
ornsteinfilip Jan 22, 2026
70d0a03
feat(mcp): integrate Model Context Protocol server for AI interaction
ornsteinfilip Jan 24, 2026
204cd49
feat(mcp): enhance record handling and file upload features
ornsteinfilip Jan 24, 2026
b1ff8e1
feat(mcp): enhance Tiptap content handling and serialization
ornsteinfilip Jan 24, 2026
52347e5
feat(mcp): implement versioning tools for record management
ornsteinfilip Jan 24, 2026
1de7109
refactor(compatibility_test): clean up extract_type method formatting
ornsteinfilip Jan 24, 2026
bcc5192
chore(mcp): add version requirement to server factory
ornsteinfilip Jan 25, 2026
f28e683
fix(mcp): set a protocol version that cursor cli supports
VladaTrefil Jan 29, 2026
1f6613a
chore(mcp): add note for token creation
VladaTrefil Jan 29, 2026
c96aecd
feat(mcp): add functionality to separate pack
VladaTrefil Jan 29, 2026
47f2cd4
feat(mcp): add pack configuration
VladaTrefil Feb 3, 2026
97e64a5
fix(mcp): remove unnecessary default railtie
VladaTrefil Feb 3, 2026
5d5ffc6
fix(mcp): remove the mcp enabled config attribute
VladaTrefil Feb 3, 2026
5c32a13
fix(mcp): move mcp route to railtie
VladaTrefil Feb 3, 2026
30ab4f6
fix(mcp): install_generator
VladaTrefil Feb 3, 2026
9c04f06
fix(mcp): move the remaining mcp files into pack
VladaTrefil Feb 3, 2026
2236877
fix(mcp): missing folio version
VladaTrefil Feb 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 23 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ PATH
cells-slim
charlock_holmes
cocoon
connection_pool (~> 2.5)
countries
country_select
deepl-rb
Expand All @@ -45,6 +46,7 @@ PATH
iso-639
jquery-rails
jwt
mcp
message_bus
multi_exiftool
mux_ruby (~> 3.9.0)
Expand All @@ -70,8 +72,8 @@ PATH
rubyzip (~> 2.4)
sass-rails
show_for
sidekiq (~> 6.5)
sidekiq-cron (~> 1.10.1)
sidekiq (~> 7.0)
sidekiq-cron (~> 2.0)
simple_form
sitemap_generator
slim
Expand Down Expand Up @@ -265,6 +267,9 @@ GEM
bigdecimal
rexml
crass (1.0.6)
cronex (0.15.0)
tzinfo
unicode (>= 0.4.4.5)
css_parser (1.21.1)
addressable
csv (3.3.5)
Expand Down Expand Up @@ -421,6 +426,9 @@ GEM
bindata
faraday (~> 2.0)
faraday-follow_redirects
json-schema (6.1.0)
addressable (~> 2.8)
bigdecimal (>= 3.1, < 5)
jwt (3.1.2)
base64
language_server-protocol (3.17.0.5)
Expand All @@ -447,6 +455,8 @@ GEM
net-smtp
marcel (1.1.0)
matrix (0.4.3)
mcp (0.6.0)
json-schema (>= 4.1)
message_bus (4.4.1)
rack (>= 1.1.3)
method_source (1.1.0)
Expand Down Expand Up @@ -712,14 +722,17 @@ GEM
show_for (0.9.0)
actionpack (>= 7.0)
activemodel (>= 7.0)
sidekiq (6.5.12)
connection_pool (>= 2.2.5, < 3)
rack (~> 2.0)
redis (>= 4.5.0, < 5)
sidekiq-cron (1.10.1)
fugit (~> 1.8)
sidekiq (7.3.10)
base64
connection_pool (>= 2.3.0, < 3)
logger
rack (>= 2.2.4, < 3.3)
redis-client (>= 0.23.0, < 1)
sidekiq-cron (2.3.1)
cronex (>= 0.13.0)
fugit (~> 1.8, >= 1.11.1)
globalid (>= 1.0.1)
sidekiq (>= 6)
sidekiq (>= 6.5.0)
simple_form (5.4.0)
actionpack (>= 7.0)
activemodel (>= 7.0)
Expand Down Expand Up @@ -776,6 +789,7 @@ GEM
uglifier (4.2.1)
execjs (>= 0.3.0, < 3)
unaccent (0.4.0)
unicode (0.4.4.5)
unicode-display_width (3.2.0)
unicode-emoji (~> 4.1)
unicode-emoji (4.1.0)
Expand Down
Loading