Skip to main content
Glama

get_contact

Retrieve detailed contact information from Zoom using a specific contact ID. This tool integrates with the Zoom API MCP Server for validated and secure data access.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contact_idYesThe contact ID

Implementation Reference

  • The handler function for the 'get_contact' tool. It makes a GET request to the Zoom API endpoint `/contacts/${contact_id}` to retrieve the specific contact's information, handles the response, and catches any errors.
    handler: async ({ contact_id }) => { try { const response = await zoomApi.get(`/contacts/${contact_id}`); return handleApiResponse(response); } catch (error) { return handleApiError(error); } }
  • Input schema using Zod for validating the 'contact_id' parameter as a required string.
    schema: { contact_id: z.string().describe("The contact ID") },
  • src/server.js:52-52 (registration)
    Registers the 'contactsTools' array, which includes the 'get_contact' tool, to the MCP server via the registerTools utility.
    registerTools(contactsTools);
  • src/server.js:8-8 (registration)
    Imports the contactsTools array containing the 'get_contact' tool definition from src/tools/contacts.js.
    import { contactsTools } from './tools/contacts.js';

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/mattcoatsworth/zoom-mcp-server'

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