Forgejo MCP
A self-hosted MCP server and dashboard that provides governed, auditable AI access to a Forgejo instance, with tools for managing repositories, issues, pull requests, and more.
README
Forgejo MCP
Forgejo MCP is a self-hosted Model Context Protocol server and management Dashboard that gives organizations centrally governed, controlled and observable AI access to an existing Forgejo instance.
Users connect with their own scoped Forgejo personal access tokens (PATs). Administrators decide which MCP tools are enabled globally, available to each user and granted to each show-once MCP token.
v0.1.0 is the initial open-source release. The core workflow is tested locally against Forgejo 16.0.2, while some production deployment capabilities are not yet complete. Review the known limitations before production use.
What it provides
- 38 tools for repositories, git trees, branches, commits, labels, milestones, Issues, pull requests, reviews, workflows, tags and releases.
- Global, user and token-level tool authorization in addition to Forgejo's own permissions.
- Per-user Forgejo identity through a verified, scoped PAT.
- AES-256-GCM encryption for stored PATs and show-once MCP tokens.
- A web Dashboard for Forgejo configuration, users, permissions and audit records.
- Redacted invocation auditing, structured logs, health endpoints and Prometheus metrics.
Governance for company use
Forgejo MCP is designed as a governance layer between company AI clients and Forgejo—not merely as another API wrapper.
- Manageable permissions: administrators centrally control which tools are enabled globally, available to each user and granted to each MCP token.
- Controlled operations: AI clients never receive an unrestricted shared Forgejo token. Every operation remains bounded by the user's PAT scopes, Forgejo repository permissions and server-side input limits.
- Traceable identity: each MCP token belongs to a specific user and client, so activity is not hidden behind a shared service account.
- Auditable behavior: tool, user, target, authorization decision, status, duration and correlation identifiers are recorded with sensitive values redacted.
- Observable service: structured logs, health checks, Prometheus metrics and request/user/invocation correlation support operational inspection.
- Revocable access: administrators can revoke one client token, remove selected tool grants, deactivate a Forgejo credential or suspend a user.
- Credential isolation: MCP tokens and Forgejo PATs are separate credentials. An MCP token neither contains nor reveals the PAT; if only an MCP token is exposed, it can be revoked without rotating the Forgejo PAT.
How it works
MCP client ──Bearer token──> Forgejo MCP /mcp ──user PAT──> Forgejo API
│
Web Dashboard ──admin/user──> permissions, credentials and audit records
│
PostgreSQL
Forgejo MCP does not replace Forgejo authorization. A tool is available only when it is globally enabled, allowed for the user, granted to the MCP token, and permitted by the user's Forgejo account and PAT.
Requirements
- An existing Forgejo instance compatible with the locked Forgejo 16.0.2 API contract
- Docker Engine with Docker Compose
- OpenSSL for generating local secrets
The supported v0.1.0 deployment builds the React Dashboard into the App image and starts the App and PostgreSQL together. Operators do not need separate frontend and backend processes.
Quick start
From the repository root:
cp deploy/compose.example.env deploy/.env
# Edit deploy/.env and replace POSTGRES_PASSWORD before continuing.
mkdir -p deploy/secrets
openssl rand -base64 32 > deploy/secrets/admin_password
openssl rand -base64 32 > deploy/secrets/credential_key
chmod 600 deploy/secrets/admin_password deploy/secrets/credential_key
docker compose --env-file deploy/.env -f deploy/compose.yaml up --build -d
Verify that the service is ready:
docker compose --env-file deploy/.env -f deploy/compose.yaml ps
curl http://127.0.0.1:8000/health/ready
Open http://127.0.0.1:8000 and sign in with:
- Username:
admin(orFMCP_BOOTSTRAP_ADMIN_USERNAME) - Password: the value in
deploy/secrets/admin_password
Change the bootstrap password immediately. Direct localhost HTTP requires FMCP_COOKIE_SECURE=false; secure cookies should remain enabled behind HTTPS.
For logs, shutdown, clean reset, common startup errors and the optional local Forgejo profile, see Getting started.
First-time setup
After signing in:
- Change the bootstrap administrator password.
- Configure and verify the Forgejo base URL.
- Enable the required tools globally.
- Create a user with their expected Forgejo username and send a one-time invitation.
- Set the user's tool allowance.
- Have the user verify a scoped Forgejo PAT and create an MCP token.
- Grant the required tools to that token.
- Connect an MCP client to
POST /mcp.
See the administrator guide and user guide for the complete workflow.
MCP connection
Forgejo MCP uses authenticated MCP Streamable HTTP:
URL: https://forgejo-mcp.example/mcp
Transport: Streamable HTTP
Authorization: Bearer fmcp_...
The MCP token is shown only once. Store it in the client's secret storage; query-string tokens are rejected. See MCP client configuration for the field mapping, connection checks and troubleshooting guidance.
Documentation
| Need | Document |
|---|---|
| Install and start the service | Getting started |
| Configure Forgejo, users and permissions | Administrator guide |
| Create a PAT and MCP token | User guide |
| Connect an MCP client | MCP client configuration |
| Review current constraints | Known limitations |
| Inspect tool inputs and behavior | v1 tool catalog |
| Review credential handling | Credential security |
Development and verification
Run the disposable full-stack App/PostgreSQL/Forgejo E2E test:
./scripts/test-full-docker-e2e.sh
Run the individual quality checks:
uv run ruff check .
uv run ruff format --check .
uv run mypy
uv run pytest
npm run lint --prefix frontend
npm run typecheck --prefix frontend
npm run build --prefix frontend
Forgejo is pinned to codeberg.org/forgejo/forgejo:16.0.2-rootless. Verify another instance's Swagger contract with:
uv run python scripts/verify_forgejo_openapi.py https://forgejo.example/swagger.v1.json
License
Copyright holders license this project under the Apache License 2.0.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.