gitea-mcp
Provides tools for interacting with a Gitea instance, enabling management of repositories, issues, pull requests, file content, and commit history.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@gitea-mcplist open issues in the repo"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Gitea MCP
A local MCP server that gives Claude Desktop — and any MCP client — the ability to work with a self-hosted Gitea instance.
MCP clients — Claude Desktop included — have no built-in way to reach a self-hosted Gitea instance. gitea_mcp closes that gap: it's a local MCP server that gives any MCP-compatible client the ability to list and search repos, manage issues and pull requests, and read/write files directly against your own Gitea instance.
As a bonus, it does this without routing through a third-party gateway — most MCP setups for Git hosting (Composio and similar) put a gateway between your agent and your infrastructure, holding your token and brokering every API call. gitea_mcp skips that entirely: it runs as a subprocess on your own machine, talks over stdio, and speaks directly to your Gitea instance — your token and repo data never pass through anyone else's server.
This project is intentionally local-only. There's no hosted endpoint, no third-party account, and no server to deploy — just a command your MCP client launches on demand.
Features
Direct connection — talks straight to
GITEA_BASE_URL, nothing in betweenRepositories — list and search
Issues — list (filtered by state) and create
Pull requests — list (filtered by state) and create
Files — read content and write (create or update) as a single commit, with SHA-based conflict protection
Commits — list history, optionally scoped to one file
Actionable errors — auth, not-found, permission, conflict, and validation failures all come back as specific, readable messages instead of raw exceptions
Related MCP server: GitHub MCP Server
Prerequisites
Python 3.9 or later
A running Gitea instance you have API access to
A Gitea personal access token
Install
Recommended — installs a gitea-mcp command directly from this repo, no manual venv management:
pipx install git+https://github.com/datamathcode/gitea-mcp.git
# or
uv tool install git+https://github.com/datamathcode/gitea-mcp.gitManual / development install — for contributing, or an editable local install:
git clone https://github.com/datamathcode/gitea-mcp.git
cd gitea-mcp
python3 -m venv venv
source venv/bin/activate # venv\Scripts\activate on Windows
pip install -e .Both paths register the same gitea-mcp command.
Dependencies are pinned tomcp==1.9.4 deliberately. Newer mcp releases (2.0.0+) restructured the package and no longer expose FastMCP at the path this server imports it from.
Configure
Generate a token in Gitea under Settings → Applications → Generate New Token, scoped narrowly to what this server needs (repo read/write, issue read/write) rather than every permission available.
export GITEA_BASE_URL="https://gitea.example.com"
export GITEA_TOKEN="<your token>"The server refuses to start if either variable is missing — no silent fallback to a hardcoded value.
Usage
gitea_mcp is a standard MCP server communicating over stdio — it works with any MCP-compatible client, not just Claude Desktop. Any client that can launch a local subprocess and speak the MCP protocol can use it; point it at the installed command's path and set GITEA_BASE_URL/GITEA_TOKEN in the environment it launches with.
Run standalone
gitea-mcp(Running from a source checkout without installing still works too: python3 gitea_mcp.py.)
Add to an MCP client
gitea_mcp works the same way with every client below: point it at the installed command's absolute path, and set GITEA_BASE_URL/GITEA_TOKEN in the environment it launches with. Each client just has its own config file and format for expressing that.
First, find the installed command's absolute path:
which gitea-mcpClaude Desktop
In Claude Desktop's MCP config (claude_desktop_config.json):
{
"mcpServers": {
"gitea": {
"command": "/absolute/path/from/which/gitea-mcp",
"env": {
"GITEA_BASE_URL": "https://gitea.example.com",
"GITEA_TOKEN": "<your token>"
}
}
}
}Use the full path fromwhich gitea-mcp, not just "gitea-mcp". Claude Desktop, launched via Finder/Dock on macOS, doesn't inherit your shell's PATH additions — a bare command name resolves fine from a terminal but fails to launch from Claude Desktop's config. Check whether your client has the same limitation before assuming a bare command name will work.
Claude Code
claude mcp add --transport stdio gitea --env GITEA_BASE_URL=https://gitea.example.com --env GITEA_TOKEN=YOUR_TOKEN_HERE -- /absolute/path/from/which/gitea-mcpDocs: code.claude.com/docs/en/mcp-quickstart
Codex
codex mcp add gitea --env GITEA_BASE_URL=https://gitea.example.com --env GITEA_TOKEN=YOUR_TOKEN_HERE -- /absolute/path/from/which/gitea-mcpDocs: learn.chatgpt.com/docs/extend/mcp
Hermes Agent
In ~/.hermes/config.yaml:
mcp_servers:
gitea:
command: "/absolute/path/from/which/gitea-mcp"
env:
GITEA_BASE_URL: "https://gitea.example.com"
GITEA_TOKEN: "<your token>"Docs: hermes-agent.nousresearch.com/docs/user-guide/features/mcp
OpenCode
In .opencode.json — note env here is an array of "KEY=value" strings, not an object like the other clients above:
{
"mcpServers": {
"gitea": {
"type": "stdio",
"command": "/absolute/path/from/which/gitea-mcp",
"args": [],
"env": ["GITEA_BASE_URL=https://gitea.example.com", "GITEA_TOKEN=<your token>"]
}
}
}Docs: opencode-ai-opencode.mintlify.app/features/mcp-integration
Any MCP client launches the server the same way: as a subprocess, talking over stdio — no port to open, no service to keep running.
Available tools
Tool | Description |
| List or search repositories accessible to the authenticated user |
| List issues in a repository, filtered by state |
| Create an issue with a title, body, and existing labels |
| List pull requests in a repository, filtered by state |
| Open a pull request from one branch into another |
| Read a file's content and current blob SHA |
| Create or update a file as a single commit |
| List commit history, optionally scoped to a file path |
Scope
This is a first pass covering the core workflow — repos, issues, PRs, file read/write, and commit history. Branch management, releases, label administration, webhooks, and org-level operations aren't implemented yet. The plan is to expand once this core set proves out in real use rather than building everything speculatively up front.
Testing
tests/test_gitea_mcp.py exercises all 8 tools against a real Gitea instance — no mocking of the Gitea API.
Point this at a disposable scratch repo, never a real project repo. The write tests create and clean up issues, pull requests, branches, and files as part of running.
pip install -e ".[dev]"
export GITEA_BASE_URL="https://gitea.example.com"
export GITEA_TOKEN="<your token>"
export TEST_REPO_OWNER="<owner of your scratch repo>" # defaults to "dmc"
export TEST_REPO_NAME="<name of your scratch repo>" # defaults to "gitea-mcp-test-repo"
pytest tests/ -vThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityDmaintenanceAn MCP server that enables Claude and other compatible LLMs to interact with the GitHub API, supporting features like creating issues, retrieving repository information, listing issues, and searching repositories.4
- FlicenseBqualityDmaintenanceAn MCP server that allows Claude and other MCP-compatible LLMs to interact with the GitHub API, supporting features like creating issues, getting repository information, listing issues, and searching repositories.4
- FlicenseNot gradedqualityDmaintenanceA working MCP server that connects to the real GitHub API, enabling users to manage repositories, issues, pull requests, and more through natural language in Claude Desktop.
- AlicenseAqualityCmaintenanceAn MCP server that gives Claude live access to your GitHub workspace — PR reviews, issue triaging, repo search, and weekly digest reports through natural language.7MIT
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
An MCP server that gives your AI access to the source code and docs of all public github repos
A MCP server built for developers enabling Git based project management with project and personal…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/datamathcode/gitea-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server