{% extends "base.html" %} {% set active_page = "tools" %} {% block title %}Tools - AI Control Plane{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Tool Configuration

AI tool settings, MCP servers, plugins, and agents

{% set c = configs.claude %}
{{ icon_claude(22) }}

Claude Code

{{ "Installed" if c.installed else "Not found" }}
{{ c.mcp_servers|length }} MCP Servers
{{ c.plugins|length + c.external_plugins|length }} Plugins
{{ c.agents|length }} Agents
{{ c.hooks|length }} Hooks
{% set cp = configs.copilot %}
{{ icon_copilot(22) }}

GitHub Copilot

{{ "Installed" if cp.installed else "Not found" }}
{{ cp.mcp_servers|length }} MCP Servers
{{ cp.session_count }} Sessions
{{ cp.recent_commands|length }} Commands
{% set v = configs.vscode %}
{{ icon_vscode(22) }}

VS Code Chat

{{ "Installed" if v.installed else "Not found" }}
{{ v.mcp_servers|length }} MCP Servers
{{ v.agents|length }} Agents
{{ v.copilot_settings|length }} Settings
{% set cd = configs.claude_desktop %}
{{ icon_claude(22) }}

Claude Desktop

{{ "Installed" if cd.installed else "Not found" }}
{{ cd.mcp_servers|length }} MCP Servers
{{ cd.skills|length }} Skills
{{ cd.cowork_plugins|length }} Cowork Plugins
{{ cd.preferences|length }} Preferences
{% if shared_servers %}

Shared MCP Servers

{% for s in shared_servers %} {% endfor %}
Server NamePresent In
{{ s.name }} {% for src in s.sources %} {{ src }} {% endfor %}
{% endif %}
{% endblock %}