mirror of
https://gitea.com/gitea/gitea-mcp.git
synced 2026-08-30 12:07:45 +00:00
feat(project): add project management tools
Add read and write tools for Gitea projects, including project and column CRUD and issue-to-project-column management. Bump gitea.dev/sdk to include ProjectsService. Assisted-by: Codet:codet-internal
This commit is contained in:
@@ -11,6 +11,7 @@ func slimIssue(i *gitea_sdk.Issue) map[string]any {
|
||||
return nil
|
||||
}
|
||||
m := map[string]any{
|
||||
"id": i.ID,
|
||||
"number": i.Index,
|
||||
"title": i.Title,
|
||||
"body": i.Body,
|
||||
@@ -51,6 +52,7 @@ func slimIssues(issues []*gitea_sdk.Issue) []map[string]any {
|
||||
continue
|
||||
}
|
||||
m := map[string]any{
|
||||
"id": i.ID,
|
||||
"number": i.Index,
|
||||
"title": i.Title,
|
||||
"state": i.State,
|
||||
|
||||
Reference in New Issue
Block a user