File tree Expand file tree Collapse file tree 34 files changed +35
-32
lines changed Expand file tree Collapse file tree 34 files changed +35
-32
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import (
18
18
"github.com/github/github-mcp-server/internal/ghmcp"
19
19
"github.com/github/github-mcp-server/pkg/github"
20
20
"github.com/github/github-mcp-server/pkg/translations"
21
- gogithub "github.com/google/go-github/v72 /github"
21
+ gogithub "github.com/google/go-github/v73 /github"
22
22
mcpClient "github.com/mark3labs/mcp-go/client"
23
23
"github.com/mark3labs/mcp-go/mcp"
24
24
"github.com/stretchr/testify/require"
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ require (
16
16
require (
17
17
github.com/go-openapi/jsonpointer v0.19.5 // indirect
18
18
github.com/go-openapi/swag v0.21.1 // indirect
19
+ github.com/google/go-github/v73 v73.0.0 // indirect
19
20
github.com/josharian/intern v1.0.0 // indirect
20
21
github.com/mailru/easyjson v0.7.7 // indirect
21
22
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ github.com/google/go-github/v71 v71.0.0 h1:Zi16OymGKZZMm8ZliffVVJ/Q9YZreDKONCr+W
22
22
github.com/google/go-github/v71 v71.0.0 /go.mod h1:URZXObp2BLlMjwu0O8g4y6VBneUj2bCHgnI8FfgZ51M =
23
23
github.com/google/go-github/v72 v72.0.0 h1:FcIO37BLoVPBO9igQQ6tStsv2asG4IPcYFi655PPvBM =
24
24
github.com/google/go-github/v72 v72.0.0 /go.mod h1:WWtw8GMRiL62mvIquf1kO3onRHeWWKmK01qdCY8c5fg =
25
+ github.com/google/go-github/v73 v73.0.0 h1:aR+Utnh+Y4mMkS+2qLQwcQ/cF9mOTpdwnzlaw//rG24 =
26
+ github.com/google/go-github/v73 v73.0.0 /go.mod h1:fa6w8+/V+edSU0muqdhCVY7Beh1M8F1IlQPZIANKIYw =
25
27
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8 =
26
28
github.com/google/go-querystring v1.1.0 /go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU =
27
29
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0 =
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import (
17
17
mcplog "github.com/github/github-mcp-server/pkg/log"
18
18
"github.com/github/github-mcp-server/pkg/raw"
19
19
"github.com/github/github-mcp-server/pkg/translations"
20
- gogithub "github.com/google/go-github/v72 /github"
20
+ gogithub "github.com/google/go-github/v73 /github"
21
21
"github.com/mark3labs/mcp-go/mcp"
22
22
"github.com/mark3labs/mcp-go/server"
23
23
"github.com/shurcooL/githubv4"
Original file line number Diff line number Diff line change 4
4
"context"
5
5
"fmt"
6
6
7
- "github.com/google/go-github/v72 /github"
7
+ "github.com/google/go-github/v73 /github"
8
8
"github.com/mark3labs/mcp-go/mcp"
9
9
)
10
10
Original file line number Diff line number Diff line change 6
6
"net/http"
7
7
"testing"
8
8
9
- "github.com/google/go-github/v72 /github"
9
+ "github.com/google/go-github/v73 /github"
10
10
"github.com/stretchr/testify/assert"
11
11
"github.com/stretchr/testify/require"
12
12
)
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
12
12
ghErrors "github.com/github/github-mcp-server/pkg/errors"
13
13
"github.com/github/github-mcp-server/pkg/translations"
14
- "github.com/google/go-github/v72 /github"
14
+ "github.com/google/go-github/v73 /github"
15
15
"github.com/mark3labs/mcp-go/mcp"
16
16
"github.com/mark3labs/mcp-go/server"
17
17
)
Original file line number Diff line number Diff line change 8
8
"testing"
9
9
10
10
"github.com/github/github-mcp-server/pkg/translations"
11
- "github.com/google/go-github/v72 /github"
11
+ "github.com/google/go-github/v73 /github"
12
12
"github.com/migueleliasweb/go-github-mock/src/mock"
13
13
"github.com/stretchr/testify/assert"
14
14
"github.com/stretchr/testify/require"
Original file line number Diff line number Diff line change 9
9
10
10
ghErrors "github.com/github/github-mcp-server/pkg/errors"
11
11
"github.com/github/github-mcp-server/pkg/translations"
12
- "github.com/google/go-github/v72 /github"
12
+ "github.com/google/go-github/v73 /github"
13
13
"github.com/mark3labs/mcp-go/mcp"
14
14
"github.com/mark3labs/mcp-go/server"
15
15
)
Original file line number Diff line number Diff line change 8
8
9
9
"github.com/github/github-mcp-server/internal/toolsnaps"
10
10
"github.com/github/github-mcp-server/pkg/translations"
11
- "github.com/google/go-github/v72 /github"
11
+ "github.com/google/go-github/v73 /github"
12
12
"github.com/migueleliasweb/go-github-mock/src/mock"
13
13
"github.com/stretchr/testify/assert"
14
14
"github.com/stretchr/testify/require"
Original file line number Diff line number Diff line change 8
8
9
9
"github.com/github/github-mcp-server/internal/toolsnaps"
10
10
"github.com/github/github-mcp-server/pkg/translations"
11
- "github.com/google/go-github/v72 /github"
11
+ "github.com/google/go-github/v73 /github"
12
12
"github.com/migueleliasweb/go-github-mock/src/mock"
13
13
"github.com/stretchr/testify/assert"
14
14
"github.com/stretchr/testify/require"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
12
12
"github.com/github/github-mcp-server/pkg/translations"
13
13
"github.com/go-viper/mapstructure/v2"
14
- "github.com/google/go-github/v72 /github"
14
+ "github.com/google/go-github/v73 /github"
15
15
"github.com/mark3labs/mcp-go/mcp"
16
16
"github.com/mark3labs/mcp-go/server"
17
17
"github.com/shurcooL/githubv4"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
"github.com/github/github-mcp-server/internal/githubv4mock"
12
12
"github.com/github/github-mcp-server/internal/toolsnaps"
13
13
"github.com/github/github-mcp-server/pkg/translations"
14
- "github.com/google/go-github/v72 /github"
14
+ "github.com/google/go-github/v73 /github"
15
15
"github.com/migueleliasweb/go-github-mock/src/mock"
16
16
"github.com/shurcooL/githubv4"
17
17
"github.com/stretchr/testify/assert"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
12
12
ghErrors "github.com/github/github-mcp-server/pkg/errors"
13
13
"github.com/github/github-mcp-server/pkg/translations"
14
- "github.com/google/go-github/v72 /github"
14
+ "github.com/google/go-github/v73 /github"
15
15
"github.com/mark3labs/mcp-go/mcp"
16
16
"github.com/mark3labs/mcp-go/server"
17
17
)
Original file line number Diff line number Diff line change 8
8
9
9
"github.com/github/github-mcp-server/internal/toolsnaps"
10
10
"github.com/github/github-mcp-server/pkg/translations"
11
- "github.com/google/go-github/v72 /github"
11
+ "github.com/google/go-github/v73 /github"
12
12
"github.com/migueleliasweb/go-github-mock/src/mock"
13
13
"github.com/stretchr/testify/assert"
14
14
"github.com/stretchr/testify/require"
Original file line number Diff line number Diff line change 8
8
"net/http"
9
9
10
10
"github.com/go-viper/mapstructure/v2"
11
- "github.com/google/go-github/v72 /github"
11
+ "github.com/google/go-github/v73 /github"
12
12
"github.com/mark3labs/mcp-go/mcp"
13
13
"github.com/mark3labs/mcp-go/server"
14
14
"github.com/shurcooL/githubv4"
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
10
10
"github.com/github/github-mcp-server/internal/githubv4mock"
11
11
"github.com/github/github-mcp-server/internal/toolsnaps"
12
12
"github.com/github/github-mcp-server/pkg/translations"
13
- "github.com/google/go-github/v72 /github"
13
+ "github.com/google/go-github/v73 /github"
14
14
"github.com/shurcooL/githubv4"
15
15
16
16
"github.com/migueleliasweb/go-github-mock/src/mock"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import (
14
14
ghErrors "github.com/github/github-mcp-server/pkg/errors"
15
15
"github.com/github/github-mcp-server/pkg/raw"
16
16
"github.com/github/github-mcp-server/pkg/translations"
17
- "github.com/google/go-github/v72 /github"
17
+ "github.com/google/go-github/v73 /github"
18
18
"github.com/mark3labs/mcp-go/mcp"
19
19
"github.com/mark3labs/mcp-go/server"
20
20
)
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import (
12
12
"github.com/github/github-mcp-server/internal/toolsnaps"
13
13
"github.com/github/github-mcp-server/pkg/raw"
14
14
"github.com/github/github-mcp-server/pkg/translations"
15
- "github.com/google/go-github/v72 /github"
15
+ "github.com/google/go-github/v73 /github"
16
16
"github.com/mark3labs/mcp-go/mcp"
17
17
"github.com/migueleliasweb/go-github-mock/src/mock"
18
18
"github.com/stretchr/testify/assert"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import (
14
14
15
15
"github.com/github/github-mcp-server/pkg/raw"
16
16
"github.com/github/github-mcp-server/pkg/translations"
17
- "github.com/google/go-github/v72 /github"
17
+ "github.com/google/go-github/v73 /github"
18
18
"github.com/mark3labs/mcp-go/mcp"
19
19
"github.com/mark3labs/mcp-go/server"
20
20
)
Original file line number Diff line number Diff line change 8
8
9
9
"github.com/github/github-mcp-server/pkg/raw"
10
10
"github.com/github/github-mcp-server/pkg/translations"
11
- "github.com/google/go-github/v72 /github"
11
+ "github.com/google/go-github/v73 /github"
12
12
"github.com/mark3labs/mcp-go/mcp"
13
13
"github.com/migueleliasweb/go-github-mock/src/mock"
14
14
"github.com/stretchr/testify/require"
Original file line number Diff line number Diff line change 8
8
9
9
ghErrors "github.com/github/github-mcp-server/pkg/errors"
10
10
"github.com/github/github-mcp-server/pkg/translations"
11
- "github.com/google/go-github/v72 /github"
11
+ "github.com/google/go-github/v73 /github"
12
12
"github.com/mark3labs/mcp-go/mcp"
13
13
"github.com/mark3labs/mcp-go/server"
14
14
)
Original file line number Diff line number Diff line change 8
8
9
9
"github.com/github/github-mcp-server/internal/toolsnaps"
10
10
"github.com/github/github-mcp-server/pkg/translations"
11
- "github.com/google/go-github/v72 /github"
11
+ "github.com/google/go-github/v73 /github"
12
12
"github.com/migueleliasweb/go-github-mock/src/mock"
13
13
"github.com/stretchr/testify/assert"
14
14
"github.com/stretchr/testify/require"
Original file line number Diff line number Diff line change 7
7
"io"
8
8
"net/http"
9
9
10
- "github.com/google/go-github/v72 /github"
10
+ "github.com/google/go-github/v73 /github"
11
11
"github.com/mark3labs/mcp-go/mcp"
12
12
)
13
13
Original file line number Diff line number Diff line change 9
9
10
10
ghErrors "github.com/github/github-mcp-server/pkg/errors"
11
11
"github.com/github/github-mcp-server/pkg/translations"
12
- "github.com/google/go-github/v72 /github"
12
+ "github.com/google/go-github/v73 /github"
13
13
"github.com/mark3labs/mcp-go/mcp"
14
14
"github.com/mark3labs/mcp-go/server"
15
15
)
Original file line number Diff line number Diff line change 7
7
"testing"
8
8
9
9
"github.com/github/github-mcp-server/pkg/translations"
10
- "github.com/google/go-github/v72 /github"
10
+ "github.com/google/go-github/v73 /github"
11
11
"github.com/migueleliasweb/go-github-mock/src/mock"
12
12
"github.com/stretchr/testify/assert"
13
13
"github.com/stretchr/testify/require"
Original file line number Diff line number Diff line change 5
5
"errors"
6
6
"fmt"
7
7
8
- "github.com/google/go-github/v72 /github"
8
+ "github.com/google/go-github/v73 /github"
9
9
"github.com/mark3labs/mcp-go/mcp"
10
10
"github.com/mark3labs/mcp-go/server"
11
11
)
Original file line number Diff line number Diff line change 9
9
"testing"
10
10
11
11
"github.com/github/github-mcp-server/pkg/raw"
12
- "github.com/google/go-github/v72 /github"
12
+ "github.com/google/go-github/v73 /github"
13
13
"github.com/shurcooL/githubv4"
14
14
"github.com/stretchr/testify/assert"
15
15
)
Original file line number Diff line number Diff line change 6
6
"github.com/github/github-mcp-server/pkg/raw"
7
7
"github.com/github/github-mcp-server/pkg/toolsets"
8
8
"github.com/github/github-mcp-server/pkg/translations"
9
- "github.com/google/go-github/v72 /github"
9
+ "github.com/google/go-github/v73 /github"
10
10
"github.com/mark3labs/mcp-go/server"
11
11
"github.com/shurcooL/githubv4"
12
12
)
Original file line number Diff line number Diff line change 6
6
"net/http"
7
7
"net/url"
8
8
9
- gogithub "github.com/google/go-github/v72 /github"
9
+ gogithub "github.com/google/go-github/v73 /github"
10
10
)
11
11
12
12
// GetRawClientFn is a function type that returns a RawClient instance.
Original file line number Diff line number Diff line change 6
6
"net/url"
7
7
"testing"
8
8
9
- "github.com/google/go-github/v72 /github"
9
+ "github.com/google/go-github/v73 /github"
10
10
"github.com/migueleliasweb/go-github-mock/src/mock"
11
11
"github.com/stretchr/testify/require"
12
12
)
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Some packages may only be included on certain architectures or operating systems
13
13
- [ github.com/go-openapi/swag] ( https://pkg.go.dev/github.com/go-openapi/swag ) ([ Apache-2.0] ( https://github.com/go-openapi/swag/blob/v0.21.1/LICENSE ) )
14
14
- [ github.com/go-viper/mapstructure/v2] ( https://pkg.go.dev/github.com/go-viper/mapstructure/v2 ) ([ MIT] ( https://github.com/go-viper/mapstructure/blob/v2.3.0/LICENSE ) )
15
15
- [ github.com/google/go-github/v71/github] ( https://pkg.go.dev/github.com/google/go-github/v71/github ) ([ BSD-3-Clause] ( https://github.com/google/go-github/blob/v71.0.0/LICENSE ) )
16
- - [ github.com/google/go-github/v72 /github] ( https://pkg.go.dev/github.com/google/go-github/v72 /github ) ([ BSD-3-Clause] ( https://github.com/google/go-github/blob/v72 .0.0/LICENSE ) )
16
+ - [ github.com/google/go-github/v73 /github] ( https://pkg.go.dev/github.com/google/go-github/v73 /github ) ([ BSD-3-Clause] ( https://github.com/google/go-github/blob/v73 .0.0/LICENSE ) )
17
17
- [ github.com/google/go-querystring/query] ( https://pkg.go.dev/github.com/google/go-querystring/query ) ([ BSD-3-Clause] ( https://github.com/google/go-querystring/blob/v1.1.0/LICENSE ) )
18
18
- [ github.com/google/uuid] ( https://pkg.go.dev/github.com/google/uuid ) ([ BSD-3-Clause] ( https://github.com/google/uuid/blob/v1.6.0/LICENSE ) )
19
19
- [ github.com/gorilla/mux] ( https://pkg.go.dev/github.com/gorilla/mux ) ([ BSD-3-Clause] ( https://github.com/gorilla/mux/blob/v1.8.0/LICENSE ) )
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Some packages may only be included on certain architectures or operating systems
13
13
- [ github.com/go-openapi/swag] ( https://pkg.go.dev/github.com/go-openapi/swag ) ([ Apache-2.0] ( https://github.com/go-openapi/swag/blob/v0.21.1/LICENSE ) )
14
14
- [ github.com/go-viper/mapstructure/v2] ( https://pkg.go.dev/github.com/go-viper/mapstructure/v2 ) ([ MIT] ( https://github.com/go-viper/mapstructure/blob/v2.3.0/LICENSE ) )
15
15
- [ github.com/google/go-github/v71/github] ( https://pkg.go.dev/github.com/google/go-github/v71/github ) ([ BSD-3-Clause] ( https://github.com/google/go-github/blob/v71.0.0/LICENSE ) )
16
- - [ github.com/google/go-github/v72 /github] ( https://pkg.go.dev/github.com/google/go-github/v72 /github ) ([ BSD-3-Clause] ( https://github.com/google/go-github/blob/v72 .0.0/LICENSE ) )
16
+ - [ github.com/google/go-github/v73 /github] ( https://pkg.go.dev/github.com/google/go-github/v73 /github ) ([ BSD-3-Clause] ( https://github.com/google/go-github/blob/v73 .0.0/LICENSE ) )
17
17
- [ github.com/google/go-querystring/query] ( https://pkg.go.dev/github.com/google/go-querystring/query ) ([ BSD-3-Clause] ( https://github.com/google/go-querystring/blob/v1.1.0/LICENSE ) )
18
18
- [ github.com/google/uuid] ( https://pkg.go.dev/github.com/google/uuid ) ([ BSD-3-Clause] ( https://github.com/google/uuid/blob/v1.6.0/LICENSE ) )
19
19
- [ github.com/gorilla/mux] ( https://pkg.go.dev/github.com/gorilla/mux ) ([ BSD-3-Clause] ( https://github.com/gorilla/mux/blob/v1.8.0/LICENSE ) )
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Some packages may only be included on certain architectures or operating systems
13
13
- [ github.com/go-openapi/swag] ( https://pkg.go.dev/github.com/go-openapi/swag ) ([ Apache-2.0] ( https://github.com/go-openapi/swag/blob/v0.21.1/LICENSE ) )
14
14
- [ github.com/go-viper/mapstructure/v2] ( https://pkg.go.dev/github.com/go-viper/mapstructure/v2 ) ([ MIT] ( https://github.com/go-viper/mapstructure/blob/v2.3.0/LICENSE ) )
15
15
- [ github.com/google/go-github/v71/github] ( https://pkg.go.dev/github.com/google/go-github/v71/github ) ([ BSD-3-Clause] ( https://github.com/google/go-github/blob/v71.0.0/LICENSE ) )
16
- - [ github.com/google/go-github/v72 /github] ( https://pkg.go.dev/github.com/google/go-github/v72 /github ) ([ BSD-3-Clause] ( https://github.com/google/go-github/blob/v72 .0.0/LICENSE ) )
16
+ - [ github.com/google/go-github/v73 /github] ( https://pkg.go.dev/github.com/google/go-github/v73 /github ) ([ BSD-3-Clause] ( https://github.com/google/go-github/blob/v73 .0.0/LICENSE ) )
17
17
- [ github.com/google/go-querystring/query] ( https://pkg.go.dev/github.com/google/go-querystring/query ) ([ BSD-3-Clause] ( https://github.com/google/go-querystring/blob/v1.1.0/LICENSE ) )
18
18
- [ github.com/google/uuid] ( https://pkg.go.dev/github.com/google/uuid ) ([ BSD-3-Clause] ( https://github.com/google/uuid/blob/v1.6.0/LICENSE ) )
19
19
- [ github.com/gorilla/mux] ( https://pkg.go.dev/github.com/gorilla/mux ) ([ BSD-3-Clause] ( https://github.com/gorilla/mux/blob/v1.8.0/LICENSE ) )
You can’t perform that action at this time.
0 commit comments