Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions apps/web/src/components/mcp/mcp-tools-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,26 @@ const MCP_TOOLS = [
description:
"Create a dashboard from a template (service_health, error_tracking, blank) or custom JSON.",
},
{
name: "list_agent_sessions",
description:
"List AI agent sessions with their agent, vendor, models, LLM and tool calls, failures, tokens, and cost. Filter by vendor, service, model, tool, errors, or duration/cost ranges.",
},
{
name: "get_agent_session",
description:
"Read one AI agent session: verdict and findings, active/idle time, token and cost breakdown, models and tools used, failure groups, and turns.",
},
{
name: "get_agent_tools_overview",
description:
"Show how often each AI agent tool is called, how often it fails, and how slow it is, compared with the previous window. Select a tool to list its failure groups.",
},
{
name: "get_agent_tool_error",
description:
"Investigate one agent tool failure group: affected sessions, message variants, models and services, and sample calls with their arguments and results.",
},
] as const

export function McpToolsList() {
Expand Down