Skip to main content
Glama
AiAgency-Now

VoiceAI-MCP-VAVicky

Official
by AiAgency-Now

get_assistant

Retrieve basic information about a specific VoiceAI assistant by providing its unique ID to access configuration details and capabilities.

Instructions

Get basic information about a specific assistant

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
assistant_idYesAssistant ID

Implementation Reference

  • Handler logic for the 'get_assistant' tool within the executeTool switch statement. It constructs the API URL using the provided assistant_id and proceeds to fetch the data.
    case 'get_assistant':
      url = `${this.baseUrl}/assistants/${args.assistant_id}`;
      break;
  • Input schema definition for the 'get_assistant' tool, specifying the required 'assistant_id' parameter.
    inputSchema: {
      type: 'object',
      properties: {
        assistant_id: { type: 'string', description: 'Assistant ID' }
      },
      required: ['assistant_id']
    }
  • index.js:144-154 (registration)
    Registration of the 'get_assistant' tool in the ListTools response, including name, description, and input schema.
    {
      name: 'get_assistant',
      description: 'Get basic information about a specific 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?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states it's a read operation ('Get'), implying it's likely safe and non-destructive, but doesn't specify permissions, rate limits, error handling, or what 'basic information' entails, leaving significant gaps for a tool with potential complexity.

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 that directly states the tool's purpose without any fluff or redundancy. It's appropriately sized and front-loaded, making it easy to parse quickly.

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 set, the description is minimal. It covers the basic purpose but lacks details on behavior, return values, or differentiation from siblings, making it incomplete for effective agent use in a context with many similar tools.

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 the single parameter 'assistant_id' clearly documented. The description adds no additional meaning beyond the schema, such as format examples or context for the ID, so it meets the baseline for high schema coverage without compensating value.

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 clearly states the verb ('Get') and resource ('basic information about a specific assistant'), making the purpose unambiguous. However, it doesn't distinguish this tool from sibling tools like 'get_one_assistant' or 'get_dashboard_assistant', which likely serve similar purposes, so it misses full differentiation.

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 such as 'get_assistants' (for listing) or 'get_one_assistant' (which may be a direct sibling). There's no mention of prerequisites, context, or exclusions, leaving usage unclear.

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