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.
Team 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”For detailed plugin usage with example prompts and workflows, see Use Claude Plugins.
| Plugin | Audience | Description |
|---|---|---|
tql@tenzir | Users | Write TQL pipelines with live documentation |
ocsf@tenzir | Users | Navigate OCSF schema for event normalization |
docs@tenzir | Users | Query Tenzir documentation interactively |
formatter@tenzir | Developers | Automatic code formatting using Tenzir guidelines |
git@tenzir | Developers | Git workflows with Tenzir-specific commit messages |
changelog@tenzir | Developers | 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. Install the TQL extension for syntax highlighting.
Next steps
Section titled “Next steps”- Use Claude plugins for TQL, OCSF, and documentation assistance