mirror of
https://gitea.com/gitea/gitea-mcp.git
synced 2025-08-23 22:33:05 +00:00
24 lines
417 B
Markdown
24 lines
417 B
Markdown
# Gitea MCP Server
|
|
|
|
## Usage
|
|
|
|
**MCP Server Config**
|
|
```json
|
|
{
|
|
"mcpServers": {
|
|
"gitea": {
|
|
"command": "gitea-mcp",
|
|
"args": [
|
|
"-t": "stdio",
|
|
"--host": "https://gitea.com",
|
|
"--token": "<your personal access token>"
|
|
],
|
|
// "env": {
|
|
// "GITEA_HOST": "https://gitea.com",
|
|
// "GITEA_ACCESS_TOKEN": "<your personal access token>"
|
|
// }
|
|
}
|
|
}
|
|
}
|
|
```
|