{"name":"io.github.SamJB123/abs-data","slug":"samjb123-abs-data","title":"ABS Data (observed)","description":"Australian Bureau of Statistics data: 1,227 tables, offering only options confirmed to serve data","url":"https://mcp.market/server/samjb123-abs-data","rating":null,"grade":"B","score":76,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":23,"stars":0,"forks":0,"downloads_week":null,"last_push_at":"2026-09-09T07:56:04.000Z","license":null},"uptime":{"percent":100,"checks":7,"ok":7,"last_checked_at":"2026-09-21T03:35:57.659Z","last_ok_at":"2026-09-21T03:35:57.659Z","latency_ms":268},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/AI-CoLab/abs-data-mcp","website":"https://abs-data-front-door.aicolab.workers.dev","version":"0.1.0","remotes":[{"type":"streamable-http","url":"https://abs-data-front-door.aicolab.workers.dev/mcp"}],"packages":[],"tools":[{"name":"describe_table","description":"A table's dimensions in key order, its coverage dates, and its observed options. Dimensions with up to 64 options list them inline with labels; larger ones (geography, occupations) say how many and are searchable with search_options.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"table":{"type":"string","minLength":1,"description":"Dataflow id, e.g. CPI"}},"required":["table"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"execute","description":"Run JavaScript in an isolated sandbox whose only capability is `abs`, a client with the same four verbs as this server (searchTables, describeTable, searchOptions, getData) and the same guarantees: every selection is verified against ABS before fetching. Use it for multi-series or multi-table analysis — fetch several series, compute growth rates, rank capitals, join tables — and `return` only the computed result, so large payloads never reach the conversation. No network beyond `abs`. Budgets: 10s CPU, 50 calls, 25s wall clock, 200KB result. Your code runs inside an async function; use `await`; console.log is captured.\n\n// The `abs` object available in execute():\ninterface Abs {\n  searchTables(input: { query?: string; geography?: string; frequency?: \"A\"|\"S\"|\"Q\"|\"M\"|\"W\"|\"D\"; limit?: number }):\n    Promise<{ results: TableSummary[]; total: number }>;\n  describeTable(table: string):\n    Promise<{ table: TableSummary; dimensions: { id: string; position: number; optionCount: number; options?: { code: string; label: string|null }[] }[]; keyFormat: string }>;\n  searchOptions(input: { table: string; dimension: string; query: string; limit?: number }):\n    Promise<{ options: { code: string; label: string|null; parent?: string|null }[]; total: number }>;\n  getData(input: { table: string; select?: Record<string, string|string[]>; startPeriod?: string; endPeriod?: string; lastN?: number; firstN?: number; maxRows?: number }):\n    Promise<{ key: string; rows: { series: string; period: string; value: number|null; unit?: string|null }[]; rowsReturned: number; truncated: boolean; seriesMatched: number; fullDataUrl: string }>;\n}\ninterface TableSummary { id: string; name: string|null; seriesCount: number; frequencies: string[]; coverage: { from: string|null; to: string|null }; dimensions: string[]; family: string|null; geography: string|null; matchedOptions?: { dimension: string; code: string; label: string|null }[] }\n// getData throws an Error whose message is JSON: { reason, dimension, message, validOptions?, alternatives? } — catch it, read validOptions, correct and retry.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"code":{"type":"string","minLength":1,"maxLength":20000,"description":"JavaScript. `abs` is in scope. Must return a value."}},"required":["code"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"get_data","description":"Fetch observations. `select` maps dimension ids to option codes or labels (several allowed); omitted dimensions match everything. The selection is verified live against ABS before fetching, so a call that succeeds always returns real data. Returns up to maxRows observations (default 500, most recent 12 periods per series unless a period range is given), a summary, and the URL for the complete pull. If an option or combination does not exist you are asked to choose from the valid ones.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"table":{"type":"string","minLength":1},"select":{"default":{},"type":"object","propertyNames":{"type":"string"},"additionalProperties":{"anyOf":[{"type":"string"},{"minItems":1,"type":"array","items":{"type":"string"}}]},"description":"dimension id -> option code or label (or several). Omitted dimensions match everything."},"startPeriod":{"description":"e.g. 2020, 2020-Q1, 2020-03","type":"string"},"endPeriod":{"type":"string"},"lastN":{"description":"Most recent N observations per series; default 12 when no period is given","type":"integer","minimum":1,"maximum":1000},"firstN":{"type":"integer","minimum":1,"maximum":1000},"maxRows":{"default":500,"description":"Cap on returned observations","type":"integer","minimum":1,"maximum":2000}},"required":["table"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"search","description":"Run JavaScript against the whole catalogue document — every table, its dimensions, coverage and small-dimension options — in an isolated sandbox with no network. Use it to answer questions the fixed verbs make awkward: 'which tables have both an SA2 geography and a quarterly frequency?', 'list every dimension name and how often it appears', 'find codelists whose labels mention rent'. Your code runs inside an async function with `catalogue` in scope; `return` a JSON-serialisable value; console.log output is captured.\n\n// The `catalogue` object available in search():\ninterface Catalogue {\n  provenance: { runId: string; observedAt: string };\n  corpus: { tables: number; seriesConfirmed: number; seriesImpliedByMetadata: number; density: number };\n  tables: Record<string, {           // keyed by table id, e.g. catalogue.tables.CPI\n    id: string; name: string|null; description: string|null; seriesCount: number;\n    frequencies: string[]; coverage: { from: string|null; to: string|null }; density: number|null;\n    family: string|null; geography: string|null; topics: string[];\n    dimensions: { id: string; position: number; codelist: string|null; optionCount: number; literal: boolean }[];\n  }>;\n  options: {\n    literal: Record<string, Record<string, string|null>>;  // codelist id -> { code: label } for small codelists (<=64 options)\n    branded: Record<string, number>;                        // large codelists -> option count (use abs.searchOptions in execute)\n  };\n}","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"code":{"type":"string","minLength":1,"maxLength":20000,"description":"JavaScript. `catalogue` is in scope. Must return a value."}},"required":["code"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"search_options","description":"Find option codes by label text within one dimension of one table — e.g. a suburb name in a geography dimension. Returns codes to use in get_data's select.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"table":{"type":"string","minLength":1},"dimension":{"type":"string","minLength":1},"query":{"type":"string","minLength":1,"maxLength":200,"description":"Match against option codes and labels"},"limit":{"default":20,"type":"integer","minimum":1,"maximum":100}},"required":["table","dimension","query"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"search_tables","description":"Find ABS statistical tables (dataflows) by topic words, geography level or frequency. Matches table names, topics and dimension names, and also option labels inside dimensions — a search for 'rent' finds CPI through its INDEX option 'Rents' and reports the match in matchedOptions. Census tables published at several geography levels are collapsed to one result with familyGeographies listing the others (use the geography filter to pick one). Every result is confirmed to serve data — nothing here comes from documentation alone. Start here, then describe_table.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"query":{"description":"Free text over ids, names, topics, dimensions","type":"string","minLength":1,"maxLength":200},"geography":{"description":"Restrict to a geography level, e.g. SA2, LGA","type":"string"},"frequency":{"type":"string","enum":["A","S","Q","M","W","D"],"description":"A annual, S semi-annual, Q quarterly, M monthly, W weekly, D daily"},"limit":{"default":10,"type":"integer","minimum":1,"maximum":50}},"$schema":"https://json-schema.org/draft/2020-12/schema"}}],"scan":{"score":76,"grade":"B","scanned_at":"2026-09-19T21:01:58.038Z","report":{"scannerVersion":"0.1.7","scannedAt":"2026-09-19T21:01:57.976Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 1235ms"]},"poisoning":{"score":13,"max":15,"notes":["6 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 2 write-action tools with no auth"]},"maintenance":{"score":15,"max":15,"notes":["last push 11 days ago"]},"identity":{"score":6,"max":10,"notes":["namespace and repository owner differ","GitHub account older than a year"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"},{"id":"poison.long-description","severity":"low","component":"poisoning","title":"Unusually long tool description (over 2,000 characters)","evidence":"tool execute: …Run JavaScript in an isolated sandbox whose only capability is `abs`, a client with the same four verbs as this server (searchTables, describeTable, searchOptions, getData) and the same guarantees: every selection is verified against ABS before fetching. Use it for multi-series or multi-table analysis — fetch several series, compute growth rates, rank capitals, join tables — and `return` only the computed result, so large payloads never reach the conversation. No network beyond `abs`. Budgets: 10s CPU, 50 calls, 25s wall clock, 200KB result. Your code runs inside an async function; use `await`; console.log is captured. // The `abs` object available in execute(): interface Abs { searchTables(input: { query?: string; geography?: string; frequency?: \"A\"|\"S\"|\"Q\"|\"M\"|\"W\"|\"D\"; limit?: number }): Promise<{ results: TableSummary[]; total: number }>; describeTable(table: string): Promise<{ table: TableSummary; dimensions: { id: string; position: number; optionCount: number; options?: { code: string; label: string|null }[] }[]; keyFormat: string }>; searchOptions(input: { table: string; dimension: string; query: string; limit?: number }): Promise<{ options: { code: string; label: string|null; parent?: string|null }[]; total: number }>; getData(input: { table: string; select?: Record<string, string|string[]>; startPeriod?: string; endPeriod?: string; lastN?: number; firstN?: number; maxRows?: number }): Promise<{ key: string; rows: { series: string; period: string; value: number|null; unit?: string|null }[]; rowsReturned: number; truncated: boolean; seriesMatched: number; fullDataUrl: string }>; } interface TableSummary { id: string; name: string|null; seriesCount: number; frequencies: string[]; coverage: { from: string|null; to: string|null }; dimensions: string[]; family: string|null; geography: string|null; matchedOptions?: { dimension: string; code: string; label: string|null }[] } // getData throws an Error whose message is JSON: { reason, dimension, message, validOptions?, alternatives? } — catch it, read validOptions, correct and retry.…"}],"inputs":{"probes":[{"url":"https://abs-data-front-door.aicolab.workers.dev/mcp","reachable":true,"authRequired":false,"latencyMs":1235,"serverInfo":{"name":"abs-data","version":"probe-2026-09-09T01-21-59-176Z"}}],"packages":[],"repo":{"found":true,"owner":"AI-CoLab","repo":"abs-data-mcp","archived":false,"pushedAt":"2026-09-09T07:56:04Z","stars":0,"forks":0,"openIssues":0,"ownerType":"Organization","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/178015407?v=4","ownerCreatedAt":"2024-08-10T10:54:44Z"},"icon":{"url":"https://avatars.githubusercontent.com/u/178015407?v=4&s=128","source":"github"},"presence":{"stars":0,"forks":0,"downloadsWeek":null,"license":null,"lastPushAt":"2026-09-09T07:56:04.000Z","score":23}}}},"grade_history":[],"reviews":[]}