ToolAssay

ZenSched `location_create` — Register a private work location

ZenSched `location_create` — Register a private work location. Provide street_address (Places establishment pin preferred over street-mailbox geocode; known ZenShows store pins reused by google_place_id) OR lat+lng. Metered on either path. Returns location_id, pin_quality (street|place|known_store|client), maps_url, satellite_url. Pay-per-call $0.03 USDC; the paying wallet owns the org (auto-provisioned on first call). Catalog: https://mcp.zensched.com/x402/tools

Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.03listed price per call
n/aprice it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://mcp.zensched.com/x402/tools/location_create

CategoryCommerce and shopping
Provider hostmcp.zensched.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

We never call tools that send, buy, move money or file anything, not even without paying.

Example input (from the provider)

{
  "body": {
    "name": "Ferry Building Marketplace",
    "street_address": "1 Ferry Building, San Francisco, CA 94111"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "checkin_radius_m": {
              "default": 0,
              "title": "Checkin Radius M",
              "type": "integer"
            },
            "idempotency_key": {
              "default": "",
              "title": "Idempotency Key",
              "type": "string"
            },
            "lat": {
              "default": 0,
              "title": "Lat",
              "type": "number"
            },
            "lng": {
              "default": 0,
              "title": "Lng",
              "type": "number"
            },
            "name": {
              "title": "Name",
              "type": "string"
            },
            "notes": {
              "default": "",
              "title": "Notes",
              "type": "string"
            },
            "street_address": {
              "default": "",
              "title": "Street Address",
              "type": "string"
            }
          },
          "required": [
            "name"
          ],
          "title": "location_createArguments",
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON