actionmcp 0.83.0 → 0.83.1
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/lib/action_mcp/version.rb +1 -1
 - data/lib/tasks/action_mcp_tasks.rake +22 -0
 - metadata +1 -1
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 34a7a67e4f2e58c82a8a06bb11adf328747ed61a38e4c06598b21657556b8779
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 0a81e9eaec25dc3906a9476fff4c9458da889fd201cb644b46ba1074ea46d5ad
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 76e455eefa6f0fb9c055d4a799ba38f09993c7562746733c05e15e8bc256df112e24788989dce2dbe0bfa290b77eedc54f89a480422a6805050bde18fbb51d2f
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 8c2fb33e02738de33451097b92c743acf053bdd759be14380fd62a098153b59a925aa8b7f490908457835d9cdb5de903a07e6d1bfe0b741aebe6f28ce64185b5
         
     | 
    
        data/lib/action_mcp/version.rb
    CHANGED
    
    
| 
         @@ -49,6 +49,28 @@ namespace :action_mcp do 
     | 
|
| 
       49 
49 
     | 
    
         
             
                puts "\n"
         
     | 
| 
       50 
50 
     | 
    
         
             
              end
         
     | 
| 
       51 
51 
     | 
    
         | 
| 
      
 52 
     | 
    
         
            +
              # bin/rails action_mcp:list_profiles
         
     | 
| 
      
 53 
     | 
    
         
            +
              desc "List all available profiles"
         
     | 
| 
      
 54 
     | 
    
         
            +
              task list_profiles: :environment do
         
     | 
| 
      
 55 
     | 
    
         
            +
                # Ensure Rails eager loads all classes
         
     | 
| 
      
 56 
     | 
    
         
            +
                Rails.application.eager_load!
         
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
                puts "\e[35mACTION MCP PROFILES\e[0m"  # Purple
         
     | 
| 
      
 59 
     | 
    
         
            +
                puts "\e[35m-------------------\e[0m"   # Purple
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
                profiles = ActionMCP.configuration.profiles
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
                if profiles.any?
         
     | 
| 
      
 64 
     | 
    
         
            +
                  profiles.each_key do |profile_name|
         
     | 
| 
      
 65 
     | 
    
         
            +
                    puts "\e[35m#{profile_name}\e[0m"
         
     | 
| 
      
 66 
     | 
    
         
            +
                  end
         
     | 
| 
      
 67 
     | 
    
         
            +
                else
         
     | 
| 
      
 68 
     | 
    
         
            +
                  puts "  No profiles configured"
         
     | 
| 
      
 69 
     | 
    
         
            +
                end
         
     | 
| 
      
 70 
     | 
    
         
            +
             
     | 
| 
      
 71 
     | 
    
         
            +
                puts "\n"
         
     | 
| 
      
 72 
     | 
    
         
            +
              end
         
     | 
| 
      
 73 
     | 
    
         
            +
             
     | 
| 
       52 
74 
     | 
    
         
             
              # bin/rails action_mcp:show_profile[profile_name]
         
     | 
| 
       53 
75 
     | 
    
         
             
              desc "Show configuration for a specific profile"
         
     | 
| 
       54 
76 
     | 
    
         
             
              task :show_profile, [ :profile_name ] => :environment do |_t, args|
         
     |