Covers get_file_contents, get_dir_contents, get_repository_tree, create_or_update_file, delete_file — all verified working with the current write:issue/write:repository token scope.
5.6 KiB
5.6 KiB
name, description, compatibility, metadata, allowed-tools
| name | description | compatibility | metadata | allowed-tools | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| gitea-files | Use when reading or writing individual files or directory trees in a Gitea repository via the Gitea MCP server: reading a file's contents, listing a directory, walking a full repository tree, creating a new file, updating an existing file, or deleting a file. Triggers on "read this file from the repo", "what's in this directory", "show me the repo tree", "create/update a file in Gitea", "commit this file to the branch", "delete this file from the repo" — even when the user doesn't say "Gitea" explicitly, as long as the target is a Gitea-hosted repository. Do not use for local filesystem file operations (use Read/Write/Edit), for branch or commit history (use gitea-branches), or for opening a pull request around a file change (use gitea-prs after the file write completes here). | Requires the Gitea MCP server configured with a token scoped to at least write:repository. Tested with a token holding write:issue + write:repository; write:issue is not actually required for any of this domain's five tools. |
|
mcp__gitea__get_file_contents mcp__gitea__get_dir_contents mcp__gitea__get_repository_tree mcp__gitea__create_or_update_file mcp__gitea__delete_file |
Gotchas
- SHA is the concurrency token for every write — and it lives at the top level of
get_file_contents's response, not nested undercontent.create_or_update_filewithoutshais always treated as a create: if the path already exists, Gitea returns HTTP 409.delete_filehas no optional path at all — omittingshareturns HTTP 422. The safe sequence for any update or delete is always: callget_file_contentsfirst, read the top-levelshafield, then pass that exact value to the write call. Never guess or reuse a stale SHA — a mismatched SHA is rejected the same as a missing one. get_dir_contentsandget_repository_treeare not SHA sources for a specific file's write.get_dir_contentsentries carry noshaat all.get_repository_treeentries do carry asha(a blob/tree hash), but fetching it means an extra round trip with no content —get_file_contentsis the canonical path since it returns the decoded content and the write-readyshain one call.ownerandrepoare always caller-supplied inputs, never resolved here. This skill doesn't infer them from a git remote. If invoked directly by a human, ask for them if not stated. If invoked bygitea-workflowor an orchestrating agent, expect them to already be resolved and passed in.- Direct commits to a branch are a first-class action, not a workaround. Gitea's own web UI defaults to editing files directly against a branch —
create_or_update_file/delete_fileused that way is normal, not an API escape hatch to avoid. The SHA-currency requirement above is the actual risk to manage, not the act of committing directly. ref(reads) vs.branch_name(writes) are different parameters for the same concept.get_file_contents,get_dir_contents, andget_repository_tree(astree_sha) all accept a branch name, tag, or commit SHA to select what to read.create_or_update_fileanddelete_fileinstead takebranch_name— the branch the commit lands on. Don't conflate the two when chaining a read into a write.- Content is base64.
create_or_update_file'scontentparameter is base64-encoded file content, not raw text — encode before calling.get_file_contents's response content is likewise base64-encoded (decode after reading), unlesswithLines: trueis passed for a numbered-line view.
Reading
- Single file:
get_file_contents(owner, repo, ref, path). PasswithLines: trueonly when you need line numbers for referencing specific lines (e.g. quoting a snippet back to the user); omit it for a normal content fetch. - One directory level:
get_dir_contents(owner, repo, ref, path)— returns immediate entries only (name, path, type, size), no recursion, no SHA, no content. - Whole tree:
get_repository_tree(owner, repo, tree_sha, recursive)—tree_shaaccepts a SHA, branch, or tag name despite the name. Setrecursive: trueto walk subdirectories in one call. Response includestruncated: truewhen a page doesn't hold every entry — page through withpage/per_page(defaultpage: 1,per_page: 30) until you get fewer results thanper_page.
Writing
- Creating a new file: call
create_or_update_file(owner, repo, path, content, message, branch_name)withshaomitted entirely. - Updating an existing file: call
get_file_contents(owner, repo, ref: branch_name, path)first, take the top-levelsha, then callcreate_or_update_file(..., sha: <that value>). - Deleting a file: call
get_file_contentsfirst the same way, thendelete_file(owner, repo, path, message, branch_name, sha: <that value>)—shais required, no create-style fallback exists. - Creating a new branch as part of the write: pass
new_branch_nameoncreate_or_update_fileto branch off before the commit lands, instead of calling a separate branch-creation step.
If the change needs review before merging, or targets a protected branch, hand off to gitea-prs after the write lands here to open the pull request — this skill's scope ends at the commit.
If you need the full multi-call sequence rather than the single-call summary above — e.g. branching off as part of a file push ahead of opening a PR, or recovering a SHA you didn't capture earlier — read references/examples.md.