← All Stars
public Star · 0.1.0
orrery/place-hours
Offline weekly hours and open-now for allowlisted venue tokens.
Use this when
- You need venue hours for a named allowlisted fixture
- You are enriching secretary context without Places egress
- You want sealed open-now facts from a fixture provider
Not for
- Arbitrary restaurant or venue search
- Trip planning or live Places lookups
- Geocoding or flight status evidence
Inputs / Outputs
Inputs
| Name | Type | Notes |
|---|---|---|
venue |
string | allowlisted named venue token |
as_of |
string | optional ISO-8601 instant for open-now |
Outputs
| Name | Type | Notes |
|---|---|---|
display_name |
string | human-readable venue label |
hours |
object | weekly hours schedule |
open_now |
boolean | — |
provider |
string | fixture attribution (orrery-fixtures) |
envelope |
signed-envelope | — |
Example
{
"method": "tools/call",
"params": {
"name": "answer",
"arguments": {
"venue": "central-park-cafe-nyc"
}
}
}Tools
place_hours
Resolve an allowlisted venue token to hours and open-now status · schema
{
"type": "object",
"properties": {
"venue": {
"type": "string",
"enum": [
"art-institute-cafe-chicago",
"british-museum-london",
"central-park-cafe-nyc",
"griffith-cafe-la",
"louvre-cafe-paris",
"opera-bar-sydney",
"tokyo-ramen-yokocho"
],
"description": "Named allowlisted venue fixture (no arbitrary search)."
},
"as_of": {
"type": "string",
"format": "date-time",
"description": "Optional ISO-8601 instant for open-now evaluation."
}
},
"required": [
"venue"
]
}answer
Venue hours lookup with a concise answer sealed in an Envelope · schema
{
"type": "object",
"properties": {
"venue": {
"type": "string",
"enum": [
"art-institute-cafe-chicago",
"british-museum-london",
"central-park-cafe-nyc",
"griffith-cafe-la",
"louvre-cafe-paris",
"opera-bar-sydney",
"tokyo-ramen-yokocho"
],
"default": "central-park-cafe-nyc"
},
"as_of": {
"type": "string",
"format": "date-time",
"description": "Optional ISO-8601 instant for open-now evaluation."
}
}
}In constellations