Skip to main content
Glama

get_assistant

Retrieve essential details about a specific assistant using the assistant ID. Ideal for managing and integrating custom VoiceAI solutions with full MCP connectivity.

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: constructs the API URL `/assistants/{assistant_id}` and performs a GET request via fetch.
    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)
    Tool registration in the ListToolsRequestHandler response, defining name, description, and input schema for 'get_assistant'.
    { 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'] } },

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/Business-On-Steroids/MCP-VoiceAI-WhiteLabel'

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