42 lines
1.0 KiB
Markdown
42 lines
1.0 KiB
Markdown
# 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). |