Skip to content

After installing the MCP server, you can further optimize your AI agent for Tenzir development workflows. This guide covers project-level configuration that enhances the development experience.

Claude Code supports a plugin marketplace that provides custom skills, slash commands, and MCP servers tailored for specific development workflows. The Tenzir Claude Marketplace includes plugins for TQL development, documentation writing, and changelog management.

Run the following commands in Claude Code to register the marketplace and install plugins interactively:

/plugin marketplace add tenzir/claude-plugins
/plugin

If you prefer HTTPS over SSH:

/plugin marketplace add https://github.com/tenzir/claude-plugins.git

For team projects, configure .claude/settings.json to share the marketplace and plugins with all contributors. When team members trust the project folder, Claude Code automatically prompts them to enable the configured plugins.

{
"permissions": {
"allow": [
"mcp__plugin_tql_tenzir",
"Read",
"Edit",
"Write",
"NotebookEdit",
"WebFetch",
"WebSearch",
"Skill",
"SlashCommand",
"ExitPlanMode"
]
},
"extraKnownMarketplaces": {
"tenzir": {
"source": {
"source": "github",
"repo": "tenzir/claude-plugins"
}
}
},
"enabledPlugins": {
"tql@tenzir": true,
"formatter@tenzir": true,
"git@tenzir": true,
"changelog@tenzir": true
}
}

The following plugins enhance TQL development:

PluginDescription
tql@tenzirTQL language server with validation and completion
formatter@tenzirAutomatic code formatting using Tenzir guidelines
git@tenzirGit workflows with Tenzir-specific commit messages
changelog@tenzirChangelog management following Tenzir conventions

Configure the Tenzir MCP server in .cursor/mcp.json:

{
"mcpServers": {
"tenzir": {
"type": "stdio",
"command": "uvx",
"args": ["tenzir-mcp@latest"],
"env": {}
}
}
}

VS Code with GitHub Copilot supports MCP servers starting with version 1.102.

Create .vscode/mcp.json in your project root:

{
"servers": {
"tenzir": {
"command": "uvx",
"args": ["tenzir-mcp@latest"]
}
}
}

Install the TQL extension for syntax highlighting and language support.

Zed is a high-performance editor with AI integration.

Install the TQL extension for syntax highlighting.

Last updated: