Skip to main content
Glama
AbbottDevelopments

Shopmonkey MCP Server

get_appointment

Retrieve detailed appointment information by ID to access customer, vehicle, and service details for shop management workflows.

Instructions

Get detailed information about a single appointment by its ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe appointment ID

Implementation Reference

  • The handler function that executes the logic for 'get_appointment', calling the Shopmonkey API.
    async get_appointment(args) {
      if (!args.id) return { content: [{ type: 'text', text: 'Error: id is required' }], isError: true };
      const data = await shopmonkeyRequest<Appointment>('GET', `/appointment/${sanitizePathParam(String(args.id))}`);
      return { content: [{ type: 'text', text: JSON.stringify(data, null, 2) }] };
    },
  • The MCP tool definition and input schema for 'get_appointment'.
    {
      name: 'get_appointment',
      description: 'Get detailed information about a single appointment by its ID.',
      inputSchema: { type: 'object' as const, properties: { id: { type: 'string', description: 'The appointment ID' } }, required: ['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/AbbottDevelopments/shopmonkey-mcp-server'

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