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.

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
}
}

For detailed plugin usage with example prompts and workflows, see Use Claude Plugins.

PluginAudienceDescription
tql@tenzirUsersWrite TQL pipelines with live documentation
ocsf@tenzirUsersNavigate OCSF schema for event normalization
docs@tenzirUsersQuery Tenzir documentation interactively
formatter@tenzirDevelopersAutomatic code formatting using Tenzir guidelines
git@tenzirDevelopersGit workflows with Tenzir-specific commit messages
changelog@tenzirDevelopersChangelog 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: