Orrery.
← All Stars

public Star · 0.1.0

orrery/geocode

Offline coordinates and display name for allowlisted place tokens.

Use this when

  • You need lat/lon for a named allowlisted place fixture
  • You are enriching secretary context without Maps egress
  • You want sealed geocode facts from a fixture provider

Not for

  • Arbitrary address geocoding or Maps lookups
  • Trip planning or restaurant search
  • Live flight or venue hours evidence

Inputs / Outputs

Inputs

NameTypeNotes
place string allowlisted named place token

Outputs

NameTypeNotes
display_name string human-readable place label
latitude number
longitude number
provider string fixture attribution (orrery-fixtures)
envelope signed-envelope

Example

{
  "method": "tools/call",
  "params": {
    "name": "answer",
    "arguments": {
      "place": "new-york"
    }
  }
}

Tools

geocode Resolve an allowlisted place token to coordinates and display name · schema
{
  "type": "object",
  "properties": {
    "place": {
      "type": "string",
      "enum": [
        "chicago",
        "london",
        "los-angeles",
        "new-york",
        "paris",
        "sydney",
        "tokyo"
      ],
      "description": "Named allowlisted place fixture (no arbitrary geocoding)."
    }
  },
  "required": [
    "place"
  ]
}
answer Geocode a place token and return a concise answer sealed in an Envelope · schema
{
  "type": "object",
  "properties": {
    "place": {
      "type": "string",
      "enum": [
        "chicago",
        "london",
        "los-angeles",
        "new-york",
        "paris",
        "sydney",
        "tokyo"
      ],
      "default": "new-york"
    }
  }
}

In constellations