Skip to content

Commit 9ead27e

Browse files
committed
add small changes
1 parent 081efe8 commit 9ead27e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ These are one time installations required to be able to test your changes locall
2424
3. Make sure linter passes on your machine: `golangci-lint run`
2525
4. Create a new branch: `git checkout -b my-branch-name`
2626
5. Add your changes and tests, and make sure the Action workflows still pass
27-
- Run linter: `script/lint`
28-
- Update snapshots and run tests: `UPDATE_TOOLSNAPS=true go test ./...`
29-
- Update readme documentation: `script/generate-docs`
27+
- Run linter: `script/lint`
28+
- Update snapshots and run tests: `UPDATE_TOOLSNAPS=true go test ./...`
29+
- Update readme documentation: `script/generate-docs`
3030
6. Push to your fork and [submit a pull request][pr] targeting the `main` branch
3131
7. Pat yourself on the back and wait for your pull request to be reviewed and merged.
3232

pkg/github/context_tools.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ type UserDetails struct {
3535
// GetMe creates a tool to get details of the authenticated user.
3636
func GetMe(getClient GetClientFn, t translations.TranslationHelperFunc) (mcp.Tool, server.ToolHandlerFunc) {
3737
tool := mcp.NewTool("get_me",
38-
mcp.WithDescription(t("TOOL_GET_ME_DESCRIPTION", "Get details of the authenticated GitHub user. Use this when a request is about the user's own profile for GitHub. Or when it is necessary to get information to build other tool calls.")),
38+
mcp.WithDescription(t("TOOL_GET_ME_DESCRIPTION", "Get details of the authenticated GitHub user. Use this when a request is about the user's own profile for GitHub. Or when information is missing to build other tool calls.")),
3939
mcp.WithToolAnnotation(mcp.ToolAnnotation{
4040
Title: t("TOOL_GET_ME_USER_TITLE", "Get my user profile"),
4141
ReadOnlyHint: ToBoolPtr(true),

0 commit comments

Comments
 (0)