← All Stars
public Star · 0.1.0
orrery/csv-url
Bounded typed rows from named allowlisted public CSV datasets.
Use this when
- You need a fresh sample of an allowlisted public CSV
- You want typed rows without scraping arbitrary URLs
Not for
- Arbitrary CSV URLs
- Unbounded downloads
- Mutating datasets
Inputs / Outputs
Inputs
| Name | Type | Notes |
|---|---|---|
dataset required |
string | — |
Outputs
| Name | Type | Notes |
|---|---|---|
rows |
array | — |
envelope |
signed-envelope | — |
Example
{
"method": "tools/call",
"params": {
"name": "get",
"arguments": {
"dataset": "flights-airport"
}
}
}Tools
get
Get typed, bounded rows from a named allowlisted public CSV dataset · schema
{
"type": "object",
"properties": {
"dataset": {
"type": "string",
"enum": [
"airports",
"flights-airport",
"seattle-weather"
],
"default": "flights-airport"
}
},
"required": [
"dataset"
]
}In constellations