Skip to main content
Glama
AiAgency-Now

VoiceAI-MCP-VAVicky

Official
by AiAgency-Now

get_assistant_usage

Retrieve usage statistics for a specific assistant to monitor performance and track activity within the VoiceAI platform.

Instructions

Get usage statistics for an assistant

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
assistant_idYesAssistant ID

Implementation Reference

  • Handler case in executeTool method that constructs the API URL for fetching assistant usage statistics.
    case 'get_assistant_usage':
      url = `${this.baseUrl}/assistants/${args.assistant_id}/usage`;
      break;
  • Input schema definition for the get_assistant_usage tool, requiring assistant_id.
    inputSchema: {
      type: 'object',
      properties: {
        assistant_id: { type: 'string', description: 'Assistant ID' }
      },
      required: ['assistant_id']
    }
  • index.js:268-278 (registration)
    Tool registration in the listTools response, including name, description, and input schema.
    {
      name: 'get_assistant_usage',
      description: 'Get usage statistics for an assistant',
      inputSchema: {
        type: 'object',
        properties: {
          assistant_id: { type: 'string', description: 'Assistant ID' }
        },
        required: ['assistant_id']
      }
    },
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states it 'gets' data, implying a read-only operation, but does not specify permissions, rate limits, data format, or other behavioral traits. This is inadequate for a tool with no annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with no wasted words. It is appropriately sized and front-loaded, directly stating the tool's purpose without unnecessary elaboration.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations, no output schema, and a simple parameter, the description is incomplete. It lacks details on what 'usage statistics' includes, how data is returned, or any behavioral context, making it insufficient for an agent to fully understand the tool's operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with 'assistant_id' clearly documented. The description adds no additional meaning beyond the schema, such as explaining what constitutes 'usage statistics' or how the ID is used. Baseline 3 is appropriate as the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Get usage statistics for an assistant' clearly states the verb ('Get') and resource ('usage statistics for an assistant'), making the purpose understandable. However, it does not differentiate from sibling tools like 'get_assistants_token_usage' or 'get_twilio_usage', which might handle similar statistics but for different scopes, leaving some ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. With siblings like 'get_assistants_token_usage' and 'get_twilio_usage', there is no indication of context, exclusions, or prerequisites, leaving the agent to guess based on tool names alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/AiAgency-Now/MCP-VoiceAI-WhiteLabel'

If you have feedback or need assistance with the MCP directory API, please join our Discord server