MCPConsole
Protocol Status: Active

Tool Registry

Manage tools exposed to Gemini 3 agents.

check_realtime_inventory
ACTIVE

mcp.tools.inventory.v1

45ms 0.01% err
get_shipping_rates
ACTIVE

mcp.tools.shipping.v2

120ms 0.5% err
verify_coupon_code
PAUSED

mcp.tools.promo.v1

check_realtime_inventory ID: tool_8842a
Allow Agents:
Input Schema (Pydantic/JSON)
{
  "name": "check_realtime_inventory",
  "description": "Checks stock levels for a specific SKU at a nearby warehouse.",
  "parameters": {
    "type": "object",
    "properties": {
      "sku": {
        "type": "string",
        "description": "The product Stock Keeping Unit (e.g., 'TSHIRT-BLK-L')"
      },
      "zip_code": {
        "type": "string",
        "description": "User's 5-digit postal code for calculating shipping."
      },
      "quantity": {
        "type": "integer",
        "default": 1
      }
    },
    "required": ["sku", "zip_code"]
  },
  "thinking_config": {
      "level": "low", // Use fast reasoning for simple lookup
      "budget": 100 // Legacy support
  }
}
Prompt Template (System Instruction)
"When a user asks about availability, ALWAYS call `check_realtime_inventory` before confirming. If stock is < 5, append 'Low Stock' warning to the response. Do NOT hallucinate availability."