File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ go 1.24.1
44
55require  (
66	github.com/fsnotify/fsnotify  v1.9.0 
7- 	github.com/mark3labs/mcp-go  v0.16 .0 
7+ 	github.com/mark3labs/mcp-go  v0.18 .0 
88	github.com/spf13/afero  v1.14.0 
99	github.com/spf13/cobra  v1.9.1 
1010	github.com/spf13/viper  v1.20.1 
Original file line number Diff line number Diff line change @@ -71,8 +71,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
7171github.com/kr/text  v0.2.0 /go.mod  h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE =
7272github.com/mailru/easyjson  v0.7.7  h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0 =
7373github.com/mailru/easyjson  v0.7.7 /go.mod  h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc =
74- github.com/mark3labs/mcp-go  v0.16 .0  h1:hNOr0EqhSUra5jm1Wv6+BOynzIa+bMtfP3zgde70MvY =
75- github.com/mark3labs/mcp-go  v0.16 .0 /go.mod  h1:KmJndYv7GIgcPVwEKJjNcbhVQ+hJGJhrCCB/9xITzpE =
74+ github.com/mark3labs/mcp-go  v0.18 .0  h1:YuhgIVjNlTG2ZOwmrkORWyPTp0dz1opPEqvsPtySXao =
75+ github.com/mark3labs/mcp-go  v0.18 .0 /go.mod  h1:KmJndYv7GIgcPVwEKJjNcbhVQ+hJGJhrCCB/9xITzpE =
7676github.com/moby/spdystream  v0.5.0  h1:7r0J1Si3QO/kjRitvSLVVFUjxMEb/YLj6S9FF62JBCU =
7777github.com/moby/spdystream  v0.5.0 /go.mod  h1:xBAYlnt/ay+11ShkdFKNAG7LsyK/tmNBVvVOwrfMgdI =
7878github.com/modern-go/concurrent  v0.0.0-20180228061459-e0a39a4cb421 /go.mod  h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q =
Original file line number Diff line number Diff line change @@ -5,13 +5,17 @@ import (
55	"github.com/mark3labs/mcp-go/mcp" 
66	"os" 
77	"path/filepath" 
8+ 	"runtime" 
89	"slices" 
910	"strings" 
1011	"testing" 
1112	"time" 
1213)
1314
1415func  TestWatchKubeConfig (t  * testing.T ) {
16+ 	if  runtime .GOOS  !=  "linux"  {
17+ 		t .Skip ("Skipping test on non-linux platforms" )
18+ 	}
1519	testCase (t , func (c  * mcpContext ) {
1620		// Given 
1721		withTimeout , cancel  :=  context .WithTimeout (c .ctx , 5 * time .Second )
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments