File tree Expand file tree Collapse file tree 4 files changed +25
-8
lines changed Expand file tree Collapse file tree 4 files changed +25
-8
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ import (
9
9
"sort"
10
10
"strings"
11
11
12
- "github.com/github/github-mcp-server /pkg/github"
13
- "github.com/github/github-mcp-server /pkg/raw"
14
- "github.com/github/github-mcp-server /pkg/toolsets"
15
- "github.com/github/github-mcp-server /pkg/translations"
12
+ "github.com/github/github-mcp-http /pkg/github"
13
+ "github.com/github/github-mcp-http /pkg/raw"
14
+ "github.com/github/github-mcp-http /pkg/toolsets"
15
+ "github.com/github/github-mcp-http /pkg/translations"
16
16
gogithub "github.com/google/go-github/v74/github"
17
17
"github.com/mark3labs/mcp-go/mcp"
18
18
"github.com/shurcooL/githubv4"
Original file line number Diff line number Diff line change 6
6
"strings"
7
7
"time"
8
8
9
- "github.com/github/github-mcp-server /internal/ghmcp"
10
- "github.com/github/github-mcp-server /pkg/github"
9
+ "github.com/github/github-mcp-http /internal/ghmcp"
10
+ "github.com/github/github-mcp-http /pkg/github"
11
11
"github.com/spf13/cobra"
12
12
"github.com/spf13/pflag"
13
13
"github.com/spf13/viper"
31
31
Short : "Start stdio server" ,
32
32
Hidden : true ,
33
33
RunE : func (_ * cobra.Command , _ []string ) error {
34
- return fmt .Errorf ("stdio transport has been removed; run `github-mcp-server http` behind your OAuth proxy" )
34
+ return fmt .Errorf ("stdio transport has been removed; run `github-mcp-http http` behind your OAuth proxy" )
35
35
},
36
36
}
37
37
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ require (
31
31
github.com/fsnotify/fsnotify v1.8.0 // indirect
32
32
github.com/go-viper/mapstructure/v2 v2.4.0
33
33
github.com/google/go-github/v71 v71.0.0 // indirect
34
- github.com/google/go-querystring v1.1.0 // indirect
34
+ github.com/google/go-querystring v1.1.0
35
35
github.com/google/uuid v1.6.0 // indirect
36
36
github.com/gorilla/mux v1.8.0 // indirect
37
37
github.com/inconshreveable/mousetrap v1.1.0 // indirect
Original file line number Diff line number Diff line change 8
8
" properties" : {
9
9
" fields" : {
10
10
" description" : " A list of field updates to apply." ,
11
+ " items" : {
12
+ " additionalProperties" : false ,
13
+ " properties" : {
14
+ " field_id" : {
15
+ " description" : " The ID of the field to update" ,
16
+ " type" : " string"
17
+ },
18
+ " value" : {
19
+ " description" : " The value to set for the field"
20
+ }
21
+ },
22
+ " required" : [
23
+ " field_id" ,
24
+ " value"
25
+ ],
26
+ " type" : " object"
27
+ },
11
28
" type" : " array"
12
29
},
13
30
" item_id" : {
You can’t perform that action at this time.
0 commit comments