Skip to content

Commit 9f6312b

Browse files
committed
Merge branch 'main' into kerobbi/investigate-csv-style-response-format
2 parents 8660acb + 2f64ac0 commit 9f6312b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+257
-319
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ The following sets of tools are available:
414414
| `users` | GitHub User related tools |
415415
<!-- END AUTOMATED TOOLSETS -->
416416

417-
### Additional Toolsets in Remote Github MCP Server
417+
### Additional Toolsets in Remote GitHub MCP Server
418418

419419
| Toolset | Description |
420420
| ----------------------- | ------------------------------------------------------------- |
@@ -1188,7 +1188,7 @@ Possible options:
11881188
</details>
11891189
<!-- END AUTOMATED TOOLS -->
11901190

1191-
### Additional Tools in Remote Github MCP Server
1191+
### Additional Tools in Remote GitHub MCP Server
11921192

11931193
<details>
11941194

cmd/github-mcp-server/generate_docs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/github/github-mcp-server/pkg/raw"
1414
"github.com/github/github-mcp-server/pkg/toolsets"
1515
"github.com/github/github-mcp-server/pkg/translations"
16-
gogithub "github.com/google/go-github/v77/github"
16+
gogithub "github.com/google/go-github/v79/github"
1717
"github.com/mark3labs/mcp-go/mcp"
1818
"github.com/shurcooL/githubv4"
1919
"github.com/spf13/cobra"

e2e/e2e_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/github/github-mcp-server/internal/ghmcp"
1919
"github.com/github/github-mcp-server/pkg/github"
2020
"github.com/github/github-mcp-server/pkg/translations"
21-
gogithub "github.com/google/go-github/v77/github"
21+
gogithub "github.com/google/go-github/v79/github"
2222
mcpClient "github.com/mark3labs/mcp-go/client"
2323
"github.com/mark3labs/mcp-go/mcp"
2424
"github.com/stretchr/testify/require"

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.24.0
44

55
require (
66
github.com/alpkeskin/gotoon v0.1.1
7-
github.com/google/go-github/v77 v77.0.0
7+
github.com/google/go-github/v79 v79.0.0
88
github.com/josephburnett/jd v1.9.2
99
github.com/mark3labs/mcp-go v0.36.0
1010
github.com/microcosm-cc/bluemonday v1.0.27
@@ -38,7 +38,7 @@ require (
3838
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3939
github.com/fsnotify/fsnotify v1.9.0 // indirect
4040
github.com/go-viper/mapstructure/v2 v2.4.0
41-
github.com/google/go-querystring v1.1.0
41+
github.com/google/go-querystring v1.1.0 // indirect
4242
github.com/google/uuid v1.6.0 // indirect
4343
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4444
github.com/pelletier/go-toml/v2 v2.2.4 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
2828
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
2929
github.com/google/go-github/v71 v71.0.0 h1:Zi16OymGKZZMm8ZliffVVJ/Q9YZreDKONCr+WUd0Z30=
3030
github.com/google/go-github/v71 v71.0.0/go.mod h1:URZXObp2BLlMjwu0O8g4y6VBneUj2bCHgnI8FfgZ51M=
31-
github.com/google/go-github/v77 v77.0.0 h1:9DsKKbZqil5y/4Z9mNpZDQnpli6PJbqipSuuNdcbjwI=
32-
github.com/google/go-github/v77 v77.0.0/go.mod h1:c8VmGXRUmaZUqbctUcGEDWYnMrtzZfJhDSylEf1wfmA=
31+
github.com/google/go-github/v79 v79.0.0 h1:MdodQojuFPBhmtwHiBcIGLw/e/wei2PvFX9ndxK0X4Y=
32+
github.com/google/go-github/v79 v79.0.0/go.mod h1:OAFbNhq7fQwohojb06iIIQAB9CBGYLq999myfUFnrS4=
3333
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
3434
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
3535
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=

internal/ghmcp/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
mcplog "github.com/github/github-mcp-server/pkg/log"
2020
"github.com/github/github-mcp-server/pkg/raw"
2121
"github.com/github/github-mcp-server/pkg/translations"
22-
gogithub "github.com/google/go-github/v77/github"
22+
gogithub "github.com/google/go-github/v79/github"
2323
"github.com/mark3labs/mcp-go/mcp"
2424
"github.com/mark3labs/mcp-go/server"
2525
"github.com/shurcooL/githubv4"

pkg/errors/error.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/google/go-github/v77/github"
7+
"github.com/google/go-github/v79/github"
88
"github.com/mark3labs/mcp-go/mcp"
99
)
1010

pkg/errors/error_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net/http"
77
"testing"
88

9-
"github.com/google/go-github/v77/github"
9+
"github.com/google/go-github/v79/github"
1010
"github.com/stretchr/testify/assert"
1111
"github.com/stretchr/testify/require"
1212
)

pkg/github/actions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
buffer "github.com/github/github-mcp-server/pkg/buffer"
1313
ghErrors "github.com/github/github-mcp-server/pkg/errors"
1414
"github.com/github/github-mcp-server/pkg/translations"
15-
"github.com/google/go-github/v77/github"
15+
"github.com/google/go-github/v79/github"
1616
"github.com/mark3labs/mcp-go/mcp"
1717
"github.com/mark3labs/mcp-go/server"
1818
)

pkg/github/actions_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"github.com/github/github-mcp-server/internal/profiler"
1616
buffer "github.com/github/github-mcp-server/pkg/buffer"
1717
"github.com/github/github-mcp-server/pkg/translations"
18-
"github.com/google/go-github/v77/github"
18+
"github.com/google/go-github/v79/github"
1919
"github.com/migueleliasweb/go-github-mock/src/mock"
2020
"github.com/stretchr/testify/assert"
2121
"github.com/stretchr/testify/require"

0 commit comments

Comments
 (0)