mirror of
https://gitea.com/gitea/gitea-mcp.git
synced 2026-08-30 03:57:45 +00:00
feat!: support protocol 2026-07-28 over HTTP and add --bind (#227)
Adds MCP protocol `2026-07-28` over HTTP through the official Go SDK, and validates the `Origin` header on every request as the spec requires. Tool and Gitea failures now come back as an ordinary `tools/call` result carrying `result.isError: true`, the way the SDK's own tool wrapper reports them. Malformed requests, unknown tools or methods, and server faults stay JSON-RPC errors. Adds `-b, --bind` to narrow the listen address. The default still accepts every interface, so this is opt-in hardening. It matters because a request that omits `Authorization` falls back to the server's own token. **Breaking: the HTTP endpoint no longer keeps a session per client.** What changes for a client: 1. `/mcp` accepts `POST` only, and answers `405` to `GET` or `DELETE`. 2. The server neither sends nor accepts `Mcp-Session-Id`, so there is no session handshake to perform. 3. There is no standalone SSE stream and no `Last-Event-ID` resumption. If a response stream breaks, send the whole request again under a new JSON-RPC id. Clients that already speak current streamable HTTP need no changes. Anything relying on the session handshake or the standalone SSE stream should stay on the previous release. --------- Co-authored-by: silverwind <me@silverwind.io> Reviewed-on: https://gitea.com/gitea/gitea-mcp/pulls/227 Reviewed-by: silverwind <2021+silverwind@noreply.gitea.com> Co-authored-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
@@ -20,6 +20,12 @@ make install
|
||||
|
||||
Pass the Gitea host and access token as command-line flags or environment variables, flags take precedence. Run `gitea-mcp --help` for the full list of flags and environment variables. Logs are written to `$HOME/.gitea-mcp/gitea-mcp.log`, add `-d` for debug logging.
|
||||
|
||||
### MCP protocol and HTTP transport
|
||||
|
||||
The server supports MCP up to `2026-07-28` and negotiates down to the client's version, advertising only the `tools` capability. Tool and Gitea failures return a `tools/call` result with `result.isError: true`, while malformed requests and server faults stay JSON-RPC errors.
|
||||
|
||||
HTTP is always stateless: `/mcp` accepts POST only, without `Mcp-Session-Id`, standalone SSE or `Last-Event-ID` resumability. Origins are validated, and reverse proxies must forward `Mcp-Protocol-Version`, `Mcp-Method` and `Mcp-Name` unchanged. `Authorization: Bearer <token>` and `Authorization: token <token>` pass a Gitea credential per request, which is credential passthrough rather than MCP OAuth.
|
||||
|
||||
### Claude Code
|
||||
|
||||
Runs the server through `go run` and requires [Go](https://go.dev):
|
||||
@@ -129,62 +135,62 @@ Once configured, try `list all my repositories` in the chat box.
|
||||
|
||||
## Available Tools
|
||||
|
||||
| Tool | Scope | Access | Description |
|
||||
| :--------------------------- | :----------- | :----- | :----------------------------------------------------------------------------------------- |
|
||||
| get_gitea_mcp_server_version | version | Read | Get the Gitea MCP server version |
|
||||
| get_me | user | Read | Get the current authenticated user |
|
||||
| get_user_orgs | user | Read | List the current user's organizations |
|
||||
| search_users | search | Read | Search for users |
|
||||
| search_org_teams | search | Read | Search teams within an organization |
|
||||
| search_repos | search | Read | Search for repositories |
|
||||
| search_issues | search | Read | Search issues and pull requests across repositories |
|
||||
| notification_read | notification | Read | Read notifications: list (optionally scoped to a repo) or get a thread by ID |
|
||||
| notification_write | notification | Write | Mark a notification or all notifications as read |
|
||||
| label_read | label | Read | Read repository or organization labels |
|
||||
| label_write | label | Write | Write labels (repo or org): create, edit, delete |
|
||||
| milestone_read | milestone | Read | Read milestones: get one or list |
|
||||
| milestone_write | milestone | Write | Write milestones: create, update, delete |
|
||||
| wiki_read | wiki | Read | Read wiki: list pages, get content, revision history |
|
||||
| wiki_write | wiki | Write | Write wiki pages: create, update, delete |
|
||||
| timetracking_read | timetracking | Read | Read time tracking: issue/repo times, active stopwatches, your tracked times |
|
||||
| timetracking_write | timetracking | Write | Write time tracking: stopwatches and entries |
|
||||
| package_read | packages | Read | Read package registry: list packages, list versions, or get a version |
|
||||
| package_write | packages | Write | Delete a package version (irreversible) |
|
||||
| list_issues | issue | Read | List repository issues |
|
||||
| attachment_read | issue | Read | Read issue/comment attachments: list metadata, get metadata, or download content |
|
||||
| issue_read | issue | Read | Read issue: details, comments, or labels |
|
||||
| issue_write | issue | Write | Write issues: create, update, manage comments and labels |
|
||||
| list_pull_requests | pull_request | Read | List repository pull requests |
|
||||
| pull_request_read | pull_request | Read | Read pull request: details, diff, files, status, reviews, review comments |
|
||||
| Tool | Scope | Access | Description |
|
||||
| :--------------------------- | :----------- | :----- | :---------- |
|
||||
| get_gitea_mcp_server_version | version | Read | Get the Gitea MCP server version |
|
||||
| get_me | user | Read | Get the current authenticated user |
|
||||
| get_user_orgs | user | Read | List the current user's organizations |
|
||||
| search_users | search | Read | Search for users |
|
||||
| search_org_teams | search | Read | Search teams within an organization |
|
||||
| search_repos | search | Read | Search for repositories |
|
||||
| search_issues | search | Read | Search issues and pull requests across repositories |
|
||||
| notification_read | notification | Read | Read notifications: list (optionally scoped to a repo) or get a thread by ID |
|
||||
| notification_write | notification | Write | Mark a notification or all notifications as read |
|
||||
| label_read | label | Read | Read repository or organization labels |
|
||||
| label_write | label | Write | Write labels (repo or org): create, edit, delete |
|
||||
| milestone_read | milestone | Read | Read milestones: get one or list |
|
||||
| milestone_write | milestone | Write | Write milestones: create, update, delete |
|
||||
| wiki_read | wiki | Read | Read wiki: list pages, get content, revision history |
|
||||
| wiki_write | wiki | Write | Write wiki pages: create, update, delete |
|
||||
| timetracking_read | timetracking | Read | Read time tracking: issue/repo times, active stopwatches, your tracked times |
|
||||
| timetracking_write | timetracking | Write | Write time tracking: stopwatches and entries |
|
||||
| package_read | packages | Read | Read package registry: list packages, list versions, or get a version |
|
||||
| package_write | packages | Write | Delete a package version (irreversible) |
|
||||
| list_issues | issue | Read | List repository issues |
|
||||
| attachment_read | issue | Read | Read issue/comment attachments: list metadata, get metadata, or download content |
|
||||
| issue_read | issue | Read | Read issue: details, comments, or labels |
|
||||
| issue_write | issue | Write | Write issues: create, update, manage comments and labels |
|
||||
| list_pull_requests | pull_request | Read | List repository pull requests |
|
||||
| pull_request_read | pull_request | Read | Read pull request: details, diff, files, status, reviews, review comments |
|
||||
| pull_request_write | pull_request | Write | Write pull requests: create, update, close, reopen, merge, update branch, manage reviewers |
|
||||
| pull_request_review_write | pull_request | Write | Write PR reviews: create, submit, delete, dismiss, reply to and resolve review comments |
|
||||
| actions_config_read | actions | Read | Read Actions secrets and variables |
|
||||
| actions_config_write | actions | Write | Write Actions secrets and variables: upsert, create, update, delete |
|
||||
| actions_run_read | actions | Read | Read Actions workflows, runs, jobs, logs, and artifacts |
|
||||
| actions_run_write | actions | Write | Write Actions runs: dispatch, cancel, rerun |
|
||||
| create_repo | repository | Write | Create a new repository |
|
||||
| fork_repo | repository | Write | Fork a repository |
|
||||
| list_my_repos | repository | Read | List repositories owned by the current user |
|
||||
| list_org_repos | repository | Read | List repositories in an organization |
|
||||
| get_repository_tree | repository | Read | Get the repository file tree |
|
||||
| get_file_contents | file | Read | Get file content and metadata |
|
||||
| get_dir_contents | file | Read | Get the entries in a directory |
|
||||
| create_or_update_file | file | Write | Create or update a file (provide sha to update an existing file) |
|
||||
| delete_file | file | Write | Delete a file |
|
||||
| create_branch | branch | Write | Create a new branch |
|
||||
| delete_branch | branch | Write | Delete a branch |
|
||||
| list_branches | branch | Read | List repository branches |
|
||||
| create_tag | tag | Write | Create a tag |
|
||||
| delete_tag | tag | Write | Delete a tag |
|
||||
| get_tag | tag | Read | Get tag details |
|
||||
| list_tags | tag | Read | List repository tags |
|
||||
| list_commits | commit | Read | List repository commits |
|
||||
| get_commit | commit | Read | Get commit details |
|
||||
| create_release | release | Write | Create a release |
|
||||
| delete_release | release | Write | Delete a release |
|
||||
| get_release | release | Read | Get a release by ID |
|
||||
| get_latest_release | release | Read | Get the latest release |
|
||||
| list_releases | release | Read | List repository releases |
|
||||
| pull_request_review_write | pull_request | Write | Write PR reviews: create, submit, delete, dismiss, reply to and resolve review comments |
|
||||
| actions_config_read | actions | Read | Read Actions secrets and variables |
|
||||
| actions_config_write | actions | Write | Write Actions secrets and variables: upsert, create, update, delete |
|
||||
| actions_run_read | actions | Read | Read Actions workflows, runs, jobs, logs, and artifacts |
|
||||
| actions_run_write | actions | Write | Write Actions runs: dispatch, cancel, rerun |
|
||||
| create_repo | repository | Write | Create a new repository |
|
||||
| fork_repo | repository | Write | Fork a repository |
|
||||
| list_my_repos | repository | Read | List repositories owned by the current user |
|
||||
| list_org_repos | repository | Read | List repositories in an organization |
|
||||
| get_repository_tree | repository | Read | Get the repository file tree |
|
||||
| get_file_contents | file | Read | Get file content and metadata |
|
||||
| get_dir_contents | file | Read | Get the entries in a directory |
|
||||
| create_or_update_file | file | Write | Create or update a file (provide sha to update an existing file) |
|
||||
| delete_file | file | Write | Delete a file |
|
||||
| create_branch | branch | Write | Create a new branch |
|
||||
| delete_branch | branch | Write | Delete a branch |
|
||||
| list_branches | branch | Read | List repository branches |
|
||||
| create_tag | tag | Write | Create a tag |
|
||||
| delete_tag | tag | Write | Delete a tag |
|
||||
| get_tag | tag | Read | Get tag details |
|
||||
| list_tags | tag | Read | List repository tags |
|
||||
| list_commits | commit | Read | List repository commits |
|
||||
| get_commit | commit | Read | Get commit details |
|
||||
| create_release | release | Write | Create a release |
|
||||
| delete_release | release | Write | Delete a release |
|
||||
| get_release | release | Read | Get a release by ID |
|
||||
| get_latest_release | release | Read | Get the latest release |
|
||||
| list_releases | release | Read | List repository releases |
|
||||
|
||||
> **Note:** Several tools are consolidated, action-based tools, a single tool exposes multiple operations through a `method` parameter. Tools with `Write` access are hidden when the server runs in read-only mode (`-r` / `GITEA_READONLY`), and the exposed tool set can be filtered by scope with `-S` / `--scope` (`GITEA_SCOPES`) and/or by individual tool name with `-O` / `--tools` (`GITEA_TOOLS`).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user