frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Show HN: Max – a federated data query layer for AI agents (and humans)

https://max.cloud
7•benvan•5h ago
Hey HN! I built a thing and I'm really excited to share it.

EDIT: I meant to link to the github, not the website: https://github.com/max-hq/max

Like many of us here, I've been commonly reaching for a pattern of "pull data into db; give it to claude" for a while, whilst doing data spelunking or building tooling - for the same reasons mentioned by thellimist over here [1] and a few other recent "CLI vs MCP" posts.

To that end, about a month ago I started building a project called `max` - its goal is to cut the middleman and schematise any data source for you. Essentially, provide a lingua-franca for synchronising and searching data.

In short: Max exposes a CLI for any given data source, and mirrors it locally. As in, puts that data right next to the agent. It means search is local and fast, and ready for cut, sed, grep, sort etc.

More concretely:

> max connect @max/connector-gmail --name gmail-1 > max sync gmail-1

> # show me what data i can search for > max schema @max/conector-gmail

> # do a search > max search gmail-1 --filter"subject ~= Apples" --fields=subject,from,time

I've built a few connectors over at `max-hq/max-connectors` - but the goal is that they're easy to create (sync is done via graph walk - max makes you provide field resolution so it can figure out how to sync).

In practice - I've found that telling claude to run "max -g llm-bootstrap" to get acquainted, and then "make a connector for X" also works pretty well :).

There's a lot still to come(!) - realtime, somewhere to host connectors, exposing and serving max nodes... I'll be updating the roadmap over the next couple of days - but I didn't want to wait any longer before sharing here.

(on that note - max is designed for federation. The core is platform agnostic)

In terms of what this approach makes possible - I ran a benchmark on a challenge (it's the one on the website) asking claude to find me names of a particular form from a fairly chunky hubspot (100k contacts). The metrics are roughly what you'd expect from putting the data local and avoiding any tokens hitting claude's context window:

MCP: 18M tokens | 80m time | $180 cost

Max: 238 tokens | 27s time | $0.003 cost

(I'll explain how these numbers were calculated in a new reply)

It's still early (alpha) but if you're building agents or just want local data, please try it and tell me what breaks.

Thanks!

[1] https://news.ycombinator.com/item?id=47157398

Comments

benvan•5h ago
Regarding the metrics:

- Claude (via Hubspot MCP) was paginating over contacts, at 40s per 800 contacts and ~150k tokens (triggering compaction) - full run was 120 of these loops @ 80 minutes and 18M tokens

- Claude + Max was 1 `max search hubspot --filter` command piped to sort | uniq -c - plus 1 `max search gdrive` query matching each of the results of the previous query, piped to sort | uniq -c - The rest of the tokens were spent producing an output from 20 words + 20 numbers

(Both of these calculations ignore cached tokens)

The Quran's 950-Years of Noah Echoes the Ages of Kings in the Sumerian King List

https://mystudentfailedtheirmid.substack.com/p/if-muslims-accept-noahs-950-years
1•darkhorse13•41s ago•0 comments

More Is Different for Intelligence

https://fulcrumresearch.ai/2026/03/05/more-is-different-for-intelligence.html
1•etherio•1m ago•0 comments

What if CLIs exposed machine-readable contracts for AI agents?

https://github.com/sonde-sh/sonde
1•valentinprgnd•4m ago•1 comments

The Monk at the Cocktail Party

https://www.sebs.website/the-monk-at-the-cocktail-party
1•Incerto•4m ago•0 comments

Weather Report #1

https://at-news.leaflet.pub/3mgg7ie7tdk2o
2•Kye•4m ago•0 comments

A Million Simulated Seasons [video]

https://www.youtube.com/watch?v=Vv9wpQIGZDw
1•carlos-menezes•5m ago•0 comments

Incrementally parsing LLM Markdown streams on server/client

https://github.com/nimeshnayaju/markdown-parser
1•nayajunimesh•5m ago•1 comments

Show HN: Kula – Lightweight, self-contained Linux server monitoring tool

https://github.com/c0m4r/kula
2•c0m4r•5m ago•0 comments

Show HN: Cross-Claude MCP – Let multiple Claude instances talk to each other

https://github.com/rblank9/cross-claude-mcp
2•rblank9•6m ago•0 comments

Poll

2•consumer451•7m ago•0 comments

I'm 60 years old. Claude Code has ignited a passion again

3•shannoncc•8m ago•0 comments

SYNX – a config format that parses 67× faster than YAML, built for AI pipelines

https://github.com/kaiserrberg/synx-format
2•Kaiserrberg•8m ago•0 comments

All of this refugee case's filings should be online

https://www.lawdork.com/p/law-dork-objection-refugee-case
1•hn_acker•9m ago•1 comments

Plasma Bigscreen – 10-foot interface for KDE plasma

https://plasma-bigscreen.org
13•PaulHoule•14m ago•1 comments

GitHub appears to be hiding repo stars for signed-out users

3•ramoz•16m ago•1 comments

Garrett Langley of Flock Safety on building technology to solve crime

https://cheekypint.substack.com/p/garrett-langley-of-flock-safety-on
1•hhs•16m ago•0 comments

Kafka 101

https://highscalability.com/untitled-2/
1•medbar•17m ago•0 comments

Show HN: MCP server that finds dev tool credits in your workflow

1•janaksunil•18m ago•0 comments

Helix: A post-modern text editor

https://helix-editor.com/
5•doener•19m ago•0 comments

Turns out making games is the easy part

2•clamlotus•20m ago•1 comments

Show HN: A governance pattern for self-evolving AI skills

https://github.com/191341025/Self-Evolving-Skill
1•tiansenxu•22m ago•0 comments

Follow-Up: Build Awesome's Kickstarter Is Cancelled

https://brennan.day/build-awesomes-kickstarter-is-cancelled/
2•brennanbrown•23m ago•0 comments

London tech ecosystem map (235 companies)

https://www.londonmaxxxing.com/
2•birdmania•23m ago•1 comments

Polymarket Removes Betting Market on Nuclear Detonation

https://www.wsj.com/livecoverage/stock-market-today-dow-sp-500-nasdaq-03-04-2026/card/polymarket-...
1•bookofjoe•23m ago•0 comments

Show HN: Agent Office – Slack for (OpenClaw Like) AI Agents

https://github.com/baturyilmaz/agent-office
5•arbayi•24m ago•1 comments

WebSocket+Huffman vs. SSE+JSON for streaming LLM tokens

https://github.com/vidur2/token_entropy_encoder
1•vidur2•26m ago•1 comments

Learning makes brain cells work together, not apart: study

https://www.rochester.edu/newscenter/learning-makes-brain-cells-work-together-not-apart-694722/
1•hhs•26m ago•0 comments

Show HN: WTF-CLI – An AI-powered terminal error solver written in Rust

https://github.com/JitseLambrichts/WTF-CLI
1•JitseLambrichts•26m ago•0 comments

GoldRush Agent Skills for blockchain data and pricing

https://goldrush.dev/agents/
1•Ferns765•27m ago•0 comments

Show HN: Kaeso – infrastructure for connecting AI agents to real services

https://kaeso.ai
1•devinoldenburg•28m ago•0 comments