Skip to main content
Glama

rr_get_inventory_position

Retrieve current stock levels by location for inventory items to monitor availability and manage replenishment.

Instructions

Get stock-by-location for an item

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
item_idNo
skuNo

Implementation Reference

  • src/index.ts:27-27 (registration)
    Registration of the 'rr_get_inventory_position' tool in the TOOLS array.
    { name: 'rr_get_inventory_position', description: 'Get stock-by-location for an item', inputSchema: { type: 'object' as const, properties: { item_id: { type: 'string' }, sku: { type: 'string' } } } },
  • The generic callApi function which dispatches all tool requests, including rr_get_inventory_position, to the remote API.
    async function callApi(toolName: string, input: Record<string, unknown>): Promise<unknown> {
      const resp = await fetch(`${BASE_URL}/api/mcp/call`, {
        method: 'POST',
        headers: {
          'Content-Type': 'application/json',
          'Authorization': `Bearer ${API_KEY}`,
        },
        body: JSON.stringify({ tool: toolName, input }),
      });
    
      if (!resp.ok) {
        const errorBody = await resp.text();
        throw new Error(`API error ${resp.status}: ${errorBody}`);
      }
    
      const data = await resp.json();
      return data.result;
    }

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/ReplenishRadar/MCP'

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