From 4d7a33e57e730f201d2ffaa0a798ce4c06a61b99 Mon Sep 17 00:00:00 2001 From: Jason Date: Tue, 19 May 2026 17:33:19 +0000 Subject: [PATCH] Add a sample config for Mistral's Vibe agent config (#194) Note: There seems to be some nascent work on https://github.com/mistralai/mistral-vibe to make it easier to pass environment variables into the config and eliminate hardcoding. But, it hasn't landed yet, as far as I can tell. Reviewed-on: https://gitea.com/gitea/gitea-mcp/pulls/194 Reviewed-by: Lunny Xiao Co-authored-by: Jason Co-committed-by: Jason --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index ae7a1c5..af6fc85 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ - [🚧 Installation](#-installation) - [Usage with Claude Code](#usage-with-claude-code) - [Usage with VS Code](#usage-with-vs-code) + - [Usage with Mistral Vibe](#usage-with-mistral-vibe) - [📥 Download the official binary release](#-download-the-official-binary-release) - [🔧 Build from Source](#-build-from-source) - [📁 Add to PATH](#-add-to-path) @@ -85,6 +86,31 @@ Optionally, you can add it to a file called `.vscode/mcp.json` in your workspace } ``` +### Usage with Mistral Vibe + +Add the following configuration to your Mistral Vibe MCP configuration file (`~/.vibe/config.toml`): + +```toml +[[mcp_servers]] +name = "gitea" +transport = "stdio" +command = "docker" +args = [ + "run", + "--rm", + "-i", + "-e", + "GITEA_ACCESS_TOKEN", + "-e", + "GITEA_HOST", + "docker.gitea.com/gitea-mcp-server", +] + +[mcp_servers.env] +GITEA_ACCESS_TOKEN = "TOKEN" +GITEA_HOST = "https://gitea.com" +``` + ### 📥 Download the official binary release You can download the official release from [official Gitea MCP binary releases](https://gitea.com/gitea/gitea-mcp/releases).