Skip to content

Commit 8f4f83d

Browse files
committed
adjust prompt
1 parent fb16640 commit 8f4f83d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/github/gists.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ func ListGists(getClient GetClientFn, t translations.TranslationHelperFunc) (too
9292
// GetGist creates a tool to get the content of a gist
9393
func GetGist(getClient GetClientFn, t translations.TranslationHelperFunc) (tool mcp.Tool, handler server.ToolHandlerFunc) {
9494
return mcp.NewTool("get_gist",
95-
mcp.WithDescription(t("TOOL_GET_GIST_DESCRIPTION", "Get gist content of a particular gist ID")),
95+
mcp.WithDescription(t("TOOL_GET_GIST_DESCRIPTION", "Get gist content of a particular gist, by gist ID")),
9696
mcp.WithToolAnnotation(mcp.ToolAnnotation{
9797
Title: t("TOOL_GET_GIST", "Get Gist Content"),
9898
ReadOnlyHint: ToBoolPtr(true),
9999
}),
100100
mcp.WithString("gist_id",
101101
mcp.Required(),
102-
mcp.Description("Gist ID of a particular gist"),
102+
mcp.Description("The ID of the gist"),
103103
),
104104
),
105105
func(ctx context.Context, request mcp.CallToolRequest) (*mcp.CallToolResult, error) {

0 commit comments

Comments
 (0)