list_apps
View all registered applications and their usage statistics for team management and monitoring.
Instructions
List all registered apps for the current team, with usage stats.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:447-450 (handler)The handler for the "list_apps" tool, which triggers an API request to /v1/apps.
case "list_apps": { result = await apiRequest("GET", "/v1/apps"); break; } - index.js:218-226 (registration)The definition and registration of the "list_apps" tool in the MCP tool list.
{ name: "list_apps", description: "List all registered apps for the current team, with usage stats.", inputSchema: { type: "object", properties: {}, }, },