Skip to main content
Glama
AbbottDevelopments

Shopmonkey MCP Server

search_parts

Find automotive parts in Shopmonkey by searching name, part number, or description to manage inventory and complete work orders.

Instructions

Search the parts catalog in Shopmonkey. Use for finding parts by name, number, or description.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesSearch query for parts (name, part number, or description)
limitNoMaximum number of results to return (default: 25)
pageNoPage number for pagination (default: 1)

Implementation Reference

  • The search_parts handler implementation that performs a GET request to /part with the provided query parameters.
    async search_parts(args) {
      if (!args.query) return { content: [{ type: 'text', text: 'Error: query is required' }], isError: true };
      const params: Record<string, string> = { query: String(args.query) };
      if (args.limit !== undefined) params.limit = String(args.limit);
      if (args.page !== undefined) params.page = String(args.page);
    
      const data = await shopmonkeyRequest<InventoryPart[]>('GET', '/part', undefined, params);
      return { content: [{ type: 'text', text: JSON.stringify(data, null, 2) }] };
    },
  • The input schema definition for the search_parts tool.
      name: 'search_parts',
      description: 'Search the parts catalog in Shopmonkey. Use for finding parts by name, number, or description.',
      inputSchema: {
        type: 'object' as const,
        properties: {
          query: { type: 'string', description: 'Search query for parts (name, part number, or description)' },
          limit: { type: 'number', description: 'Maximum number of results to return (default: 25)' },
          page: { type: 'number', description: 'Page number for pagination (default: 1)' },
        },
        required: ['query'],
      },
    },

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