commit aa50b49e888b52bbe9f25e8bef8cc009588d0001 Author: oval Date: Fri Jun 12 22:47:29 2026 +0000 Initial commit - Gitea MCP setup repository diff --git a/README.md b/README.md new file mode 100644 index 0000000..a99a53a --- /dev/null +++ b/README.md @@ -0,0 +1,42 @@ +# Gitea MCP Setup Repository + +This repository contains setup instructions and configuration for the Gitea MCP (Model Context Protocol) server. + +## Installation + +Download the binary from the official release: + +```bash +# For macOS (Apple Silicon) +curl -L https://gt.covalente.dk/api/packages/oval/generic/gitea-mcp/0.0.1/gitea-mcp_Darwin_arm64 -o /usr/local/bin/gitea-mcp +chmod +x /usr/local/bin/gitea-mcp +``` + +## Configuration in Zed + +Add this to your Zed settings (`~/.config/zed/settings.json`): + +```json +{ + "context_servers": { + "gitea": { + "command": "gitea-mcp", + "args": ["-t", "stdio", "--host", "https://gt.covalente.dk"], + "env": { + "GITEA_ACCESS_TOKEN": "your-access-token-here" + }, + }, + }, +} +``` + +## Available Tools + +Once configured, the following Gitea MCP tools are available: +- Repository management +- Issue tracking +- Pull request operations +- Release management +- And more... + +For a complete list, see the [Gitea MCP documentation](https://gt.covalente.dk/oval/gitea-mcp-setup). \ No newline at end of file