pizzaz-finder

v1.0.0
A powerful MCP server built with NitroStack

🔌 Connection Information

MCP Endpoint

https://pizzaz-693abea0.default.nitrocloud.ai/mcp

Connect to this MCP server using the endpoint above. The server supports Server-Sent Events (SSE) for real-time bidirectional communication following the Model Context Protocol specification.

🛠️ Available Tools

show_pizza_map
Display an interactive map of pizza shops in San Francisco
🎨 Has UI Widget
Input Schema
{
  "type": "object",
  "properties": {
    "filter": {
      "type": "string",
      "enum": [
        "open_now",
        "top_rated",
        "all"
      ],
      "description": "Filter to apply"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
show_pizza_list
Display a list of pizza shops with filtering and sorting options
🎨 Has UI Widget
Input Schema
{
  "type": "object",
  "properties": {
    "openNow": {
      "type": "boolean",
      "description": "Show only shops that are currently open"
    },
    "minRating": {
      "type": "number",
      "minimum": 1,
      "maximum": 5,
      "description": "Minimum rating (1-5)"
    },
    "maxPrice": {
      "type": "number",
      "minimum": 1,
      "maximum": 3,
      "description": "Maximum price level (1-3)"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
show_pizza_shop
Display detailed information about a specific pizza shop
🎨 Has UI Widget
Input Schema
{
  "type": "object",
  "properties": {
    "shopId": {
      "type": "string",
      "description": "ID of the pizza shop to display"
    }
  },
  "required": [
    "shopId"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}