{% from "components/card.html" import stat_card %}
{{ stat_card( label="MCP Servers", value=(integrations.active_count|default(0)|int)|string, icon='' ) }} {{ stat_card( label="Total Calls", value=(integrations.total_calls|default(0)|int)|string, icon='' ) }} {{ stat_card( label="Total Tokens", value=(integrations.total_tokens|default(0)|format_compact), icon='' ) }} {{ stat_card( label="Total Cost", value="$" + (integrations.total_cost|default(0.0)|float|round(2)|string), icon='' ) }}

Pricing note: MCP costs are estimated using Claude Sonnet 4.5 rates, as per-tool model tracking is not available.

{% if integrations.server_activity %}

MCP Servers

{% for server in integrations.server_activity %} {% endfor %}
Server Name Tools Total Calls Total Tokens Est. Cost
{{ server.server_name }}
{{ server.tool_count }} {{ server.total_calls }} {{ server.total_tokens|default(0)|int }} ${{ server.total_cost|default(0.0)|float|round(2) }}
{% else %}

No MCP servers found

Configure MCP servers in your Claude Code settings to see integration data

{% endif %}