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
Section titled “Claude Code”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.
Quick setup
Section titled “Quick setup”Run the following commands in Claude Code to register the marketplace and install plugins interactively:
/plugin marketplace add tenzir/claude-plugins/pluginIf you prefer HTTPS over SSH:
/plugin marketplace add https://github.com/tenzir/claude-plugins.gitTeam setup
Section titled “Team setup”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 }}Recommended plugins
Section titled “Recommended plugins”The following plugins enhance TQL development:
| Plugin | Description |
|---|---|
tql@tenzir | TQL language server with validation and completion |
formatter@tenzir | Automatic code formatting using Tenzir guidelines |
git@tenzir | Git workflows with Tenzir-specific commit messages |
changelog@tenzir | Changelog management following Tenzir conventions |
Cursor
Section titled “Cursor”Configure the Tenzir MCP server in .cursor/mcp.json:
{ "mcpServers": { "tenzir": { "type": "stdio", "command": "uvx", "args": ["tenzir-mcp@latest"], "env": {} } }}VS Code with Copilot
Section titled “VS Code with Copilot”VS Code with GitHub Copilot supports MCP servers starting with version 1.102.
MCP configuration
Section titled “MCP configuration”Create .vscode/mcp.json in your project root:
{ "servers": { "tenzir": { "command": "uvx", "args": ["tenzir-mcp@latest"] } }}TQL extension
Section titled “TQL extension”Install the TQL extension for syntax highlighting and language support.
Zed is a high-performance editor with AI integration.
TQL extension
Section titled “TQL extension”Install the TQL extension for syntax highlighting.
Next steps
Section titled “Next steps”- Generate a parser using AI assistance
- Generate an OCSF mapping for data normalization