├── .dictate.toml ├── .dockerignore ├── .env.example ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .kamal ├── hooks │ ├── docker-setup.sample │ ├── post-app-boot.sample │ ├── post-deploy.sample │ ├── post-proxy-reboot.sample │ ├── pre-app-boot.sample │ ├── pre-build.sample │ ├── pre-connect.sample │ ├── pre-deploy.sample │ └── pre-proxy-reboot.sample └── secrets ├── .mcp.json ├── .rubocop.yml ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Makefile ├── Procfile ├── README.md ├── Rakefile ├── app ├── controllers │ ├── application_controller.rb │ └── concerns │ │ └── .keep ├── jobs │ └── application_job.rb ├── mcp │ ├── application_gateway.rb │ ├── jwt_identifier.rb │ ├── prompts │ │ ├── application_mcp_prompt.rb │ │ └── epic_adventure_prompt.rb │ ├── resource_templates │ │ ├── application_mcp_res_template.rb │ │ └── gemfile_template.rb │ └── tools │ │ ├── application_mcp_tool.rb │ │ ├── client_info_tool.rb │ │ ├── dependency_info_tool.rb │ │ ├── fetch_weather_by_location_tool.rb │ │ ├── judge_my_lunch_tool.rb │ │ ├── rubocop_tool.rb │ │ ├── ruby_code_analyzer_tool.rb │ │ ├── simple_ruby_indexer.rb │ │ └── start_world_war3_tool.rb ├── models │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ └── user.rb └── views │ └── layouts │ ├── mailer.html.erb │ └── mailer.text.erb ├── bin ├── actionmcp_cli ├── brakeman ├── bundle ├── dev ├── docker-entrypoint ├── entry ├── kamal ├── rails ├── rake ├── rubocop └── setup ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── cache.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── cors.rb │ ├── filter_parameter_logging.rb │ └── inflections.rb ├── locales │ └── en.yml ├── mcp.yml ├── recurring.yml └── routes.rb ├── coss.toml ├── db ├── cache_schema.rb ├── migrate │ ├── 20250515170848_consolidated_migration.action_mcp.rb │ ├── 20251103144422_create_solid_mcp_messages.solid_mcp.rb │ ├── 20251211005354_create_users.rb │ ├── 20251211022031_add_consents_to_action_mcp_sess.action_mcp.rb │ ├── 20251211022032_remove_oauth_support.action_mcp.rb │ ├── 20251211022033_create_action_mcp_session_tasks.action_mcp.rb │ ├── 20251211022034_add_continuation_state_to_action_mcp_session_tasks.action_mcp.rb │ ├── 20251211022035_remove_sse_support.action_mcp.rb │ └── 20251211022036_add_progress_to_session_tasks.action_mcp.rb ├── schema.rb └── seeds.rb ├── docker-compose.yml ├── log └── .keep ├── mcp └── config.ru ├── nginx.conf ├── public └── robots.txt ├── test ├── controllers │ └── .keep ├── fixtures │ ├── files │ │ └── .keep │ └── users.yml ├── integration │ └── .keep ├── mailers │ └── .keep ├── mcp │ ├── prompts │ │ └── epic_adventure_prompt_test.rb │ ├── resource_templates │ │ └── gemfile_template_test.rb │ └── tools │ │ ├── dependency_info_tool_test.rb │ │ └── rubocop_tool_test.rb ├── models │ └── .keep └── test_helper.rb └── tmp ├── .keep ├── pids └── .keep └── storage └── .keep /.dictate.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/.dictate.toml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | DB_PORT=5466 2 | DB_HOST=127.1 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/.gitignore -------------------------------------------------------------------------------- /.kamal/hooks/docker-setup.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Docker set up on $KAMAL_HOSTS..." 4 | -------------------------------------------------------------------------------- /.kamal/hooks/post-app-boot.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/.kamal/hooks/post-app-boot.sample -------------------------------------------------------------------------------- /.kamal/hooks/post-deploy.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/.kamal/hooks/post-deploy.sample -------------------------------------------------------------------------------- /.kamal/hooks/post-proxy-reboot.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Rebooted kamal-proxy on $KAMAL_HOSTS" 4 | -------------------------------------------------------------------------------- /.kamal/hooks/pre-app-boot.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/.kamal/hooks/pre-app-boot.sample -------------------------------------------------------------------------------- /.kamal/hooks/pre-build.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/.kamal/hooks/pre-build.sample -------------------------------------------------------------------------------- /.kamal/hooks/pre-connect.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/.kamal/hooks/pre-connect.sample -------------------------------------------------------------------------------- /.kamal/hooks/pre-deploy.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/.kamal/hooks/pre-deploy.sample -------------------------------------------------------------------------------- /.kamal/hooks/pre-proxy-reboot.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Rebooting kamal-proxy on $KAMAL_HOSTS..." 4 | -------------------------------------------------------------------------------- /.kamal/secrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/.kamal/secrets -------------------------------------------------------------------------------- /.mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/.mcp.json -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 4.0.0-preview2 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/Rakefile -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/mcp/application_gateway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/application_gateway.rb -------------------------------------------------------------------------------- /app/mcp/jwt_identifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/jwt_identifier.rb -------------------------------------------------------------------------------- /app/mcp/prompts/application_mcp_prompt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/prompts/application_mcp_prompt.rb -------------------------------------------------------------------------------- /app/mcp/prompts/epic_adventure_prompt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/prompts/epic_adventure_prompt.rb -------------------------------------------------------------------------------- /app/mcp/resource_templates/application_mcp_res_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/resource_templates/application_mcp_res_template.rb -------------------------------------------------------------------------------- /app/mcp/resource_templates/gemfile_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/resource_templates/gemfile_template.rb -------------------------------------------------------------------------------- /app/mcp/tools/application_mcp_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/tools/application_mcp_tool.rb -------------------------------------------------------------------------------- /app/mcp/tools/client_info_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/tools/client_info_tool.rb -------------------------------------------------------------------------------- /app/mcp/tools/dependency_info_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/tools/dependency_info_tool.rb -------------------------------------------------------------------------------- /app/mcp/tools/fetch_weather_by_location_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/tools/fetch_weather_by_location_tool.rb -------------------------------------------------------------------------------- /app/mcp/tools/judge_my_lunch_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/tools/judge_my_lunch_tool.rb -------------------------------------------------------------------------------- /app/mcp/tools/rubocop_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/tools/rubocop_tool.rb -------------------------------------------------------------------------------- /app/mcp/tools/ruby_code_analyzer_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/tools/ruby_code_analyzer_tool.rb -------------------------------------------------------------------------------- /app/mcp/tools/simple_ruby_indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/tools/simple_ruby_indexer.rb -------------------------------------------------------------------------------- /app/mcp/tools/start_world_war3_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/mcp/tools/start_world_war3_tool.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /bin/actionmcp_cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/bin/actionmcp_cli -------------------------------------------------------------------------------- /bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/bin/brakeman -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/bin/docker-entrypoint -------------------------------------------------------------------------------- /bin/entry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/bin/entry -------------------------------------------------------------------------------- /bin/kamal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/bin/kamal -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/bin/setup -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/cache.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/cors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/initializers/cors.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/mcp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/mcp.yml -------------------------------------------------------------------------------- /config/recurring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/recurring.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/config/routes.rb -------------------------------------------------------------------------------- /coss.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/coss.toml -------------------------------------------------------------------------------- /db/cache_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/db/cache_schema.rb -------------------------------------------------------------------------------- /db/migrate/20250515170848_consolidated_migration.action_mcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/db/migrate/20250515170848_consolidated_migration.action_mcp.rb -------------------------------------------------------------------------------- /db/migrate/20251103144422_create_solid_mcp_messages.solid_mcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/db/migrate/20251103144422_create_solid_mcp_messages.solid_mcp.rb -------------------------------------------------------------------------------- /db/migrate/20251211005354_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/db/migrate/20251211005354_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20251211022031_add_consents_to_action_mcp_sess.action_mcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/db/migrate/20251211022031_add_consents_to_action_mcp_sess.action_mcp.rb -------------------------------------------------------------------------------- /db/migrate/20251211022032_remove_oauth_support.action_mcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/db/migrate/20251211022032_remove_oauth_support.action_mcp.rb -------------------------------------------------------------------------------- /db/migrate/20251211022033_create_action_mcp_session_tasks.action_mcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/db/migrate/20251211022033_create_action_mcp_session_tasks.action_mcp.rb -------------------------------------------------------------------------------- /db/migrate/20251211022034_add_continuation_state_to_action_mcp_session_tasks.action_mcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/db/migrate/20251211022034_add_continuation_state_to_action_mcp_session_tasks.action_mcp.rb -------------------------------------------------------------------------------- /db/migrate/20251211022035_remove_sse_support.action_mcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/db/migrate/20251211022035_remove_sse_support.action_mcp.rb -------------------------------------------------------------------------------- /db/migrate/20251211022036_add_progress_to_session_tasks.action_mcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/db/migrate/20251211022036_add_progress_to_session_tasks.action_mcp.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/mcp/config.ru -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/nginx.conf -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/public/robots.txt -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mcp/prompts/epic_adventure_prompt_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/test/mcp/prompts/epic_adventure_prompt_test.rb -------------------------------------------------------------------------------- /test/mcp/resource_templates/gemfile_template_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/test/mcp/resource_templates/gemfile_template_test.rb -------------------------------------------------------------------------------- /test/mcp/tools/dependency_info_tool_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/test/mcp/tools/dependency_info_tool_test.rb -------------------------------------------------------------------------------- /test/mcp/tools/rubocop_tool_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/test/mcp/tools/rubocop_tool_test.rb -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seuros/mcp_rails_template/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------