File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ Available Commands:
49
49
create_repository Create a new GitHub repository in your account
50
50
fork_repository Fork a GitHub repository to your account or specified organization
51
51
get_file_contents Get the contents of a file or directory from a GitHub repository
52
- get_issue Get details of a specific issue in a GitHub repository.
52
+ get_issue Get details of a specific issue in a GitHub repository
53
53
get_issue_comments Get comments for a GitHub issue
54
54
list_commits Get list of commits of a branch in a GitHub repository
55
55
list_issues List issues in a GitHub repository with filtering options
@@ -74,7 +74,7 @@ Get help for a specific tool:
74
74
75
75
``` bash
76
76
% ./mcpcurl --stdio-server-cmd " docker run -i --rm -e GITHUB_PERSONAL_ACCESS_TOKEN mcp/github" tools get_issue --help
77
- Get details of a specific issue in a GitHub repository.
77
+ Get details of a specific issue in a GitHub repository
78
78
79
79
Usage:
80
80
mcpcurl tools get_issue [flags]
Original file line number Diff line number Diff line change @@ -17,18 +17,18 @@ import (
17
17
// getIssue creates a tool to get details of a specific issue in a GitHub repository.
18
18
func getIssue (client * github.Client , t translations.TranslationHelperFunc ) (tool mcp.Tool , handler server.ToolHandlerFunc ) {
19
19
return mcp .NewTool ("get_issue" ,
20
- mcp .WithDescription (t ("TOOL_GET_ISSUE_DESCRIPTION" , "Get details of a specific issue in a GitHub repository. " )),
20
+ mcp .WithDescription (t ("TOOL_GET_ISSUE_DESCRIPTION" , "Get details of a specific issue in a GitHub repository")),
21
21
mcp .WithString ("owner" ,
22
22
mcp .Required (),
23
- mcp .Description ("The owner of the repository. " ),
23
+ mcp .Description ("The owner of the repository" ),
24
24
),
25
25
mcp .WithString ("repo" ,
26
26
mcp .Required (),
27
- mcp .Description ("The name of the repository. " ),
27
+ mcp .Description ("The name of the repository" ),
28
28
),
29
29
mcp .WithNumber ("issue_number" ,
30
30
mcp .Required (),
31
- mcp .Description ("The number of the issue. " ),
31
+ mcp .Description ("The number of the issue" ),
32
32
),
33
33
),
34
34
func (ctx context.Context , request mcp.CallToolRequest ) (* mcp.CallToolResult , error ) {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ trap "rm -fr ${TEMPDIR}" EXIT
10
10
11
11
for goos in linux darwin windows ; do
12
12
# Note: we ignore warnings because we want the command to succeed, however the output should be checked
13
- # for any new warnings, and potentially we may need to add licence information.
13
+ # for any new warnings, and potentially we may need to add license information.
14
14
#
15
15
# Normally these warnings are packages containing non go code, which may or may not require explicit attribution,
16
16
# depending on the license.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ go install github.com/google/go-licenses@latest
4
4
5
5
for goos in linux darwin windows ; do
6
6
# Note: we ignore warnings because we want the command to succeed, however the output should be checked
7
- # for any new warnings, and potentially we may need to add licence information.
7
+ # for any new warnings, and potentially we may need to add license information.
8
8
#
9
9
# Normally these warnings are packages containing non go code, which may or may not require explicit attribution,
10
10
# depending on the license.
You can’t perform that action at this time.
0 commit comments