You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/github/projects.go
+18-13Lines changed: 18 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -404,7 +404,7 @@ func ListProjectItems(getClient GetClientFn, t translations.TranslationHelperFun
404
404
mcp.Description("Number of results per page (max 100, default: 30)"),
405
405
),
406
406
mcp.WithArray("fields",
407
-
mcp.Description("Specific list of field IDs to include in the response (e.g. [102589, 985201, 169875]). If not provided, only the title field is included."),
407
+
mcp.Description("Specific list of field IDs to include in the response (e.g. [\"102589\", \"985201\", \"169875\"]). If not provided, only the title field is included."),
@@ -514,7 +514,7 @@ func GetProjectItem(getClient GetClientFn, t translations.TranslationHelperFunc)
514
514
mcp.Description("The item's ID."),
515
515
),
516
516
mcp.WithArray("fields",
517
-
mcp.Description("Specific list of field IDs to include in the response (e.g. [102589, 985201, 169875]). If not provided, only the title field is included."),
517
+
mcp.Description("Specific list of field IDs to include in the response (e.g. [\"102589\", \"985201\", \"169875\"]). If not provided, only the title field is included."),
@@ -722,7 +722,7 @@ func UpdateProjectItem(getClient GetClientFn, t translations.TranslationHelperFu
722
722
),
723
723
mcp.WithObject("updated_field",
724
724
mcp.Required(),
725
-
mcp.Description("Object consisting of the ID of the project field to update and the new value for the field. To clear the field, set value to null. Example: {id: 123456, value: New Value}"),
725
+
mcp.Description("Object consisting of the ID of the project field to update and the new value for the field. To clear the field, set value to null. Example: {\"id\": 123456, \"value\": \"New Value\"}"),
0 commit comments