mirror of
https://gitea.com/gitea/gitea-mcp.git
synced 2026-08-27 02:27:45 +00:00
b22ee74148
Add params.Bind, which unmarshals a tool call's map[string]any args into a typed struct via JSON round-trip so JSON numbers land in the correct Go numeric field types, and enforces `required:"true"` struct tags with clear errors. Migrate the branch, tree, and file repo handlers to use it instead of repeated args["x"].(string)/!ok extraction, preserving existing validation behavior for each field. Co-Authored-By: Codet <codet@commitgo.dev> (GPT-5-Codex)
274 lines
8.7 KiB
Go
274 lines
8.7 KiB
Go
package repo
|
|
|
|
import (
|
|
"bufio"
|
|
"bytes"
|
|
"cmp"
|
|
"context"
|
|
"encoding/base64"
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"gitea.com/gitea/gitea-mcp/pkg/annotation"
|
|
"gitea.com/gitea/gitea-mcp/pkg/gitea"
|
|
"gitea.com/gitea/gitea-mcp/pkg/params"
|
|
"gitea.com/gitea/gitea-mcp/pkg/to"
|
|
"gitea.com/gitea/gitea-mcp/pkg/tool"
|
|
|
|
gitea_sdk "gitea.dev/sdk"
|
|
"github.com/modelcontextprotocol/go-sdk/mcp"
|
|
)
|
|
|
|
// FileTool holds the file-related tools (scope "file").
|
|
var FileTool = tool.New("file")
|
|
|
|
const (
|
|
GetFileToolName = "get_file_contents"
|
|
GetDirToolName = "get_dir_contents"
|
|
CreateOrUpdateFileToolName = "create_or_update_file"
|
|
DeleteFileToolName = "delete_file"
|
|
)
|
|
|
|
var (
|
|
GetFileContentTool = tool.NewDefinition(
|
|
GetFileToolName,
|
|
"Get file content and metadata",
|
|
annotation.ReadOnly("Get file content"),
|
|
tool.String("owner", tool.Required(), tool.Description(params.OwnerDesc)),
|
|
tool.String("repo", tool.Required(), tool.Description(params.RepoDesc)),
|
|
tool.String("ref", tool.Required(), tool.Description("branch, tag, or commit SHA")),
|
|
tool.String("path", tool.Required()),
|
|
tool.Boolean("withLines", tool.Description("return numbered lines")),
|
|
)
|
|
|
|
GetDirContentTool = tool.NewDefinition(
|
|
GetDirToolName,
|
|
"List the entries (files and subdirectories) in a repository directory at a given ref (branch, tag, or commit SHA).",
|
|
annotation.ReadOnly("Get directory contents"),
|
|
tool.String("owner", tool.Required(), tool.Description(params.OwnerDesc)),
|
|
tool.String("repo", tool.Required(), tool.Description(params.RepoDesc)),
|
|
tool.String("ref", tool.Required(), tool.Description("branch, tag, or commit SHA")),
|
|
tool.String("path", tool.Required()),
|
|
)
|
|
|
|
CreateOrUpdateFileTool = tool.NewDefinition(
|
|
CreateOrUpdateFileToolName,
|
|
"Create or update a file (provide sha to update an existing file).",
|
|
annotation.Write("Create or update a file"),
|
|
tool.String("owner", tool.Required(), tool.Description(params.OwnerDesc)),
|
|
tool.String("repo", tool.Required(), tool.Description(params.RepoDesc)),
|
|
tool.String("path", tool.Required()),
|
|
tool.String("content", tool.Required()),
|
|
tool.String("message", tool.Required(), tool.Description("commit message")),
|
|
tool.String("branch_name", tool.Required()),
|
|
tool.String("sha", tool.Description("existing file SHA (omit to create)")),
|
|
tool.String("new_branch_name", tool.Description("branch to create from branch_name and commit to")),
|
|
)
|
|
|
|
DeleteFileTool = tool.NewDefinition(
|
|
DeleteFileToolName,
|
|
"Delete a file from a repository by committing the removal to a branch. Requires the file's current SHA and a commit message.",
|
|
annotation.Destructive("Delete a file"),
|
|
tool.String("owner", tool.Required(), tool.Description(params.OwnerDesc)),
|
|
tool.String("repo", tool.Required(), tool.Description(params.RepoDesc)),
|
|
tool.String("path", tool.Required()),
|
|
tool.String("message", tool.Required(), tool.Description("commit message")),
|
|
tool.String("branch_name", tool.Required()),
|
|
tool.String("sha", tool.Required()),
|
|
)
|
|
)
|
|
|
|
func init() {
|
|
FileTool.RegisterRead(tool.ServerTool{
|
|
Tool: GetFileContentTool,
|
|
Handler: GetFileContentFn,
|
|
})
|
|
FileTool.RegisterRead(tool.ServerTool{
|
|
Tool: GetDirContentTool,
|
|
Handler: GetDirContentFn,
|
|
})
|
|
FileTool.RegisterWrite(tool.ServerTool{
|
|
Tool: CreateOrUpdateFileTool,
|
|
Handler: CreateOrUpdateFileFn,
|
|
})
|
|
FileTool.RegisterWrite(tool.ServerTool{
|
|
Tool: DeleteFileTool,
|
|
Handler: DeleteFileFn,
|
|
})
|
|
}
|
|
|
|
type ContentLine struct {
|
|
LineNumber int `json:"line"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
type getFileContentArgs struct {
|
|
Owner string `json:"owner" required:"true"`
|
|
Repo string `json:"repo" required:"true"`
|
|
Ref string `json:"ref"`
|
|
Path string `json:"path" required:"true"`
|
|
WithLines bool `json:"withLines"`
|
|
}
|
|
|
|
func GetFileContentFn(ctx context.Context, args map[string]any) (*mcp.CallToolResult, error) {
|
|
var in getFileContentArgs
|
|
if err := params.Bind(args, &in); err != nil {
|
|
return to.ErrorResult(err)
|
|
}
|
|
client, err := gitea.ClientFromContext(ctx)
|
|
if err != nil {
|
|
return to.ErrorResult(fmt.Errorf("get gitea client err: %v", err))
|
|
}
|
|
content, _, err := client.Repositories.GetContents(ctx, in.Owner, in.Repo, in.Ref, in.Path)
|
|
if err != nil {
|
|
return to.ErrorResult(fmt.Errorf("get file err: %v", err))
|
|
}
|
|
if in.WithLines {
|
|
rawContent, err := base64.StdEncoding.DecodeString(*content.Content)
|
|
if err != nil {
|
|
return to.ErrorResult(fmt.Errorf("decode base64 content err: %v", err))
|
|
}
|
|
|
|
contentLines := make([]ContentLine, 0)
|
|
line := 0
|
|
|
|
scanner := bufio.NewScanner(bytes.NewReader(rawContent))
|
|
|
|
for scanner.Scan() {
|
|
line++
|
|
|
|
contentLines = append(contentLines, ContentLine{
|
|
LineNumber: line,
|
|
Content: scanner.Text(),
|
|
})
|
|
}
|
|
if err := scanner.Err(); err != nil {
|
|
return to.ErrorResult(fmt.Errorf("scan content err: %v", err))
|
|
}
|
|
|
|
// remove the last blank line if exists
|
|
// git does not consider the last line as a new line
|
|
if len(contentLines) > 0 && contentLines[len(contentLines)-1].Content == "" {
|
|
contentLines = contentLines[:len(contentLines)-1]
|
|
}
|
|
|
|
contentBytes, err := json.MarshalIndent(contentLines, "", " ")
|
|
if err != nil {
|
|
return to.ErrorResult(fmt.Errorf("marshal content lines err: %v", err))
|
|
}
|
|
contentStr := string(contentBytes)
|
|
content.Content = &contentStr
|
|
}
|
|
return to.TextResult(slimContents(content))
|
|
}
|
|
|
|
type getDirContentArgs struct {
|
|
Owner string `json:"owner" required:"true"`
|
|
Repo string `json:"repo" required:"true"`
|
|
Ref string `json:"ref"`
|
|
Path string `json:"path" required:"true"`
|
|
}
|
|
|
|
func GetDirContentFn(ctx context.Context, args map[string]any) (*mcp.CallToolResult, error) {
|
|
var in getDirContentArgs
|
|
if err := params.Bind(args, &in); err != nil {
|
|
return to.ErrorResult(err)
|
|
}
|
|
client, err := gitea.ClientFromContext(ctx)
|
|
if err != nil {
|
|
return to.ErrorResult(fmt.Errorf("get gitea client err: %v", err))
|
|
}
|
|
content, _, err := client.Repositories.ListContents(ctx, in.Owner, in.Repo, in.Ref, in.Path)
|
|
if err != nil {
|
|
return to.ErrorResult(fmt.Errorf("get dir content err: %v", err))
|
|
}
|
|
return to.TextResult(slimDirEntries(content))
|
|
}
|
|
|
|
type createOrUpdateFileArgs struct {
|
|
Owner string `json:"owner" required:"true"`
|
|
Repo string `json:"repo" required:"true"`
|
|
Path string `json:"path" required:"true"`
|
|
Content string `json:"content"`
|
|
Message string `json:"message"`
|
|
BranchName string `json:"branch_name"`
|
|
NewBranchName string `json:"new_branch_name"`
|
|
SHA string `json:"sha"`
|
|
}
|
|
|
|
func CreateOrUpdateFileFn(ctx context.Context, args map[string]any) (*mcp.CallToolResult, error) {
|
|
var in createOrUpdateFileArgs
|
|
if err := params.Bind(args, &in); err != nil {
|
|
return to.ErrorResult(err)
|
|
}
|
|
|
|
client, err := gitea.ClientFromContext(ctx)
|
|
if err != nil {
|
|
return to.ErrorResult(fmt.Errorf("get gitea client err: %v", err))
|
|
}
|
|
|
|
fileOpt := gitea_sdk.FileOptions{
|
|
Message: in.Message,
|
|
BranchName: in.BranchName,
|
|
NewBranchName: in.NewBranchName,
|
|
}
|
|
targetBranch := cmp.Or(in.NewBranchName, in.BranchName)
|
|
|
|
if in.SHA != "" {
|
|
// Update existing file
|
|
opt := gitea_sdk.UpdateFileOptions{
|
|
SHA: in.SHA,
|
|
Content: base64.StdEncoding.EncodeToString([]byte(in.Content)),
|
|
FileOptions: fileOpt,
|
|
}
|
|
_, _, err = client.Repositories.UpdateFile(ctx, in.Owner, in.Repo, in.Path, opt)
|
|
if err != nil {
|
|
return to.ErrorResult(fmt.Errorf("update file err: %v", err))
|
|
}
|
|
return to.TextResult("Update file success on branch " + targetBranch)
|
|
}
|
|
|
|
// Create new file
|
|
opt := gitea_sdk.CreateFileOptions{
|
|
Content: base64.StdEncoding.EncodeToString([]byte(in.Content)),
|
|
FileOptions: fileOpt,
|
|
}
|
|
_, _, err = client.Repositories.CreateFile(ctx, in.Owner, in.Repo, in.Path, opt)
|
|
if err != nil {
|
|
return to.ErrorResult(fmt.Errorf("create file err: %v", err))
|
|
}
|
|
return to.TextResult("Create file success on branch " + targetBranch)
|
|
}
|
|
|
|
type deleteFileArgs struct {
|
|
Owner string `json:"owner" required:"true"`
|
|
Repo string `json:"repo" required:"true"`
|
|
Path string `json:"path" required:"true"`
|
|
Message string `json:"message"`
|
|
BranchName string `json:"branch_name"`
|
|
SHA string `json:"sha" required:"true"`
|
|
}
|
|
|
|
func DeleteFileFn(ctx context.Context, args map[string]any) (*mcp.CallToolResult, error) {
|
|
var in deleteFileArgs
|
|
if err := params.Bind(args, &in); err != nil {
|
|
return to.ErrorResult(err)
|
|
}
|
|
opt := gitea_sdk.DeleteFileOptions{
|
|
FileOptions: gitea_sdk.FileOptions{
|
|
Message: in.Message,
|
|
BranchName: in.BranchName,
|
|
},
|
|
SHA: in.SHA,
|
|
}
|
|
client, err := gitea.ClientFromContext(ctx)
|
|
if err != nil {
|
|
return to.ErrorResult(fmt.Errorf("get gitea client err: %v", err))
|
|
}
|
|
_, err = client.Repositories.DeleteFile(ctx, in.Owner, in.Repo, in.Path, opt)
|
|
if err != nil {
|
|
return to.ErrorResult(fmt.Errorf("delete file err: %v", err))
|
|
}
|
|
return to.TextResult("Delete file success")
|
|
}
|