To install the Tenzir MCP Server server, you can choose between two options:
- Docker:
docker run -i tenzir/mcp
- Native:
uvx tenzir-mcp
The Docker version runs a container that bundles the MCP server along with a Tenzir Node installation as a convenient one-stop solution.
The native version only runs the MCP server and you need to make sure that it can access a Tenzir Node installation yourself.
AI agent configuration
Section titled “AI agent configuration”All AI agents use the same JSON configuration structure for the Tenzir MCP server. The configuration always follows this pattern:
{ "mcpServers": { "tenzir": { "command": "docker", "args": ["run", "--pull=always", "-i", "tenzir/mcp"], "env": {} } }}
{ "mcpServers": { "tenzir": { "command": "uvx", "args": ["tenzir-mcp@latest"], "env": {} } }}
The configuration file location varies by agent. See the specific sections below.
Claude
Section titled “Claude”Configure the Tenzir MCP server for Claude Code and Claude Desktop.
Claude Code
Section titled “Claude Code”For automatic configuration:
claude mcp add tenzir --scope user -- docker run --pull=always -i tenzir/mcp
claude mcp add tenzir --scope user -- uvx tenzir-mcp@latest
For manual configuration, edit ~/.mcp.json
for user-wide settings or
.mcp.json
in your project directory for project-specific settings.
Claude Desktop
Section titled “Claude Desktop”Edit the configuration file directly. The location depends on your operating system:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
- Linux:
~/.config/Claude/claude_desktop_config.json
After updating the configuration, restart Claude Desktop to load the MCP server.
Gemini CLI
Section titled “Gemini CLI”Google’s Gemini CLI supports
MCP servers natively. Configure the Tenzir MCP server by editing
~/.gemini/settings.json
.
Gemini Code Assist in VS Code shares the same MCP technology. The configuration automatically applies to both the CLI and VS Code integration.
VS Code
Section titled “VS Code”VS Code supports MCP servers through GitHub Copilot starting with version 1.102.
For project-specific configuration, create .vscode/mcp.json
in your project
root.
For user-wide configuration:
- Open Command Palette (
Ctrl+Shift+P
orCmd+Shift+P
) - Run
MCP: Open User Configuration
- Add the Tenzir server configuration
After configuration:
- Open the GitHub Copilot chat panel
- Look for the MCP icon in the chat input
- Select the Tenzir server from available MCP servers
- Start interacting with your security pipelines