Skip to main content
Glama
AbbottDevelopments

Shopmonkey MCP Server

get_user

Retrieve detailed user or technician information by ID to manage shop personnel data within the Shopmonkey system.

Instructions

Get detailed information about a single shop user or technician by their ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe user/technician ID

Implementation Reference

  • The implementation of the get_user handler function.
    async get_user(args) {
      if (!args.id) return { content: [{ type: 'text', text: 'Error: id is required' }], isError: true };
      const data = await shopmonkeyRequest<User>('GET', `/user/${sanitizePathParam(String(args.id))}`);
      return { content: [{ type: 'text', text: JSON.stringify(data, null, 2) }] };
    },
  • The schema definition for the get_user tool.
      name: 'get_user',
      description: 'Get detailed information about a single shop user or technician by their ID.',
      inputSchema: { type: 'object' as const, properties: { id: { type: 'string', description: 'The user/technician 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