HutchDB Core
OfficialClick on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@HutchDB CoreLog this bug to bug-reports with severity high, then list all open bugs."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
What is HutchDB?
HutchDB Core is a headless, single-user MCP server that gives every agent you run the same durable, structured data. Connect Claude Code, Codex, Cursor, VS Code, or another MCP client and they can store, query, and update shared collections of records across sessions.
Collections use schema-optional Postgres JSONB with full-text search, optional validation, and view definitions. There is no dashboard, no login screen, and no OAuth ceremony — just an MCP endpoint and a Postgres database you control.
This repo is the OSS engine. If you want people and agents working from the same visual workspace, HutchDB Cloud adds web views, published pages, social login, and organization sharing. See Core vs Cloud below.
Related MCP server: pathmark
What can you use it for?
The default home for agent working data is a markdown file: a TODO.md, a notes directory, a memory file full of prose. That works for one agent taking notes to itself. It breaks down the moment you want to filter ("open bugs above severity 2"), aggregate ("pipeline value by stage"), or have two agents update the same list without overwriting each other.
HutchDB holds the same information as real records: individually addressable, queryable, and safe for multiple agents to read and update at once. That makes it fit anywhere an agent produces or uses structured data that needs to outlast one chat. Some patterns people run on it:
Research that accumulates. Customer interviews, competitor teardowns, scraped listings, literature reviews. Each session adds records to a collection; any later session can query the whole set.
"Save these five competitor pricing pages to
competitor-pricing, then tell me who changed since last month."
Trackers you'd otherwise keep in a spreadsheet. Bug reports, content calendars, job applications, inventory, reading lists. The difference from a spreadsheet: your agents can query and update the records mid-task.
"Log this bug to
bug-reportswith severity high, then list everything still open."
Pipelines with handoffs between agents. One agent collects records, another processes them, a third reports on the results. A status field on each record marks where it is in the pipeline, so nothing gets copied between tools.
"Pull every
leadsrecord with statusnew, enrich each one, and set its status toready-for-outreach."
Working state for long-running projects. Decisions, open questions, and backlog items stay queryable after the context window closes. A new session starts by asking what came before instead of being re-briefed.
"What did we decide about the pricing page last week, and what's still unresolved?"
Repeatable playbooks. Store the instructions, inputs, and current status for recurring jobs (weekly reports, release checklists, content production) so any agent can pick one up and run it.
"Run the weekly-metrics playbook and store the results in
weekly-reports."
None of this needs schema design up front: collections auto-create on the first write and records are arbitrary JSON. Start with "save this to HutchDB," then query the same records from any connected agent.
Quick Start
Note: Full documentation lives at hutchdb.com.
Clone and boot (Docker):
git clone https://github.com/ExpeditedProjects/hutchdb cd hutchdb docker compose upCore migrates the database and boots on port 3000. The singleton user and personal org are inserted lazily on the first request — there is no seed step.
Lock it down (optional but recommended off-localhost) — require a bearer token on every MCP call by setting an API key before booting:
export HUTCH_API_KEY="$(openssl rand -hex 32)"If unset, all requests are trusted — fine for localhost, not fine for a public host.
Connect your agent. For Claude Code, add to your MCP config:
{ "mcpServers": { "hutch": { "type": "http", "url": "http://localhost:3000/api/mcp", "headers": { "Authorization": "Bearer YOUR_HUTCH_API_KEY" } } } }Cursor, Codex, and VS Code accept the same HTTP MCP server shape — same
url, same bearer header.Use it. Collections auto-create on first write — there is no setup step. Just talk to your agent:
"Save these launch tasks to HutchDB." "What did we store about the pricing research last week?" "Query the bug-reports collection for anything mentioning timeouts."
Verify the endpoint (optional):
curl -X POST http://localhost:3000/api/mcp \ -H "Authorization: Bearer $HUTCH_API_KEY" \ -H "Content-Type: application/json" \ -H "Accept: application/json, text/event-stream" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'You should see the
hutch_*tool list (collections, records, schema, views).
git clone https://github.com/ExpeditedProjects/hutchdb
cd hutchdb
npm install
cp .env.local.example .env.local
# Required: HUTCH_DATABASE_URL
# Optional: HUTCH_API_KEY
npm run db:migrate
npm run devThe dev MCP endpoint is http://localhost:3111/api/mcp (production/Docker: port 3000).
Example
A typical session with Claude Code connected to a local Core instance:
You: Save each of these customer interviews as a record — tag the ones
that mention pricing.
Agent: Stored 9 records in `customer-interviews`, 4 tagged "pricing".
You: (a week later) Which interviewees complained about onboarding?
Agent: Querying `customer-interviews`... 3 records match: Dana R.,
Marcus T., and the anonymous Feb 12 call.Records are arbitrary JSON in Postgres JSONB — queryable via containment filters, Mongo-style operators ($gt, $in, $exists, $contains, …), and full-text search, with optional schemas when you want structure enforced. Collections export and import as CSV or JSON when data needs to move.
HutchDB Core vs HutchDB Cloud
Core is intentionally small. If you want the product layer, run HutchDB Cloud — or fork Core and build your own.
Core (this repo) | ||
MCP server (collections, records, schema, views) | ✅ | ✅ |
Self-hosted, single-user, static API key | ✅ | — |
Web dashboard, record grid, view editor | — | ✅ |
Published views + public pages | — | ✅ |
OAuth 2.1 authorization server + consent (read/write scopes) | — | ✅ |
Social login, sessions, multi-user orgs, invitations | — | ✅ |
Works with claude.ai (web) | — | ✅ |
claude.ai requires OAuth. Core ships no OAuth authorization server, so adding a Core instance to claude.ai (web) won't work out of the box. Claude Code, Cursor, Codex, and VS Code all accept a static bearer token and work fine.
Architecture
Next.js App Router — one static landing page, one MCP route (
/api/mcp), one REST seed route (/api/v1/collections). Everything else is deleted.Drizzle + Postgres — records stored as JSONB, queried via containment operators and full-text search.
MCP server — collection tools (including per-collection stats), record tools (store/query/search/update/delete/status/transform plus CSV/JSON export and import), schema tools (describe/infer/update), and view tools. Queries support filter operators (
$gt/$gte/$lt/$lte/$ne/$in/$nin/$exists/$contains), field projection, and count/min/max/distinct/sum/avg aggregations.Auth seam (
src/lib/auth/seam.ts) — the only place auth lives: bearer-key check whenHUTCH_API_KEYis set, singleton context otherwise.Singleton bootstrap (
src/lib/auth/singleton.ts) — one user, one personal org, created lazily on first request.
Contributing
Found a bug? Open an issue with repro steps.
Want to improve Core? PRs welcome — contributors sign a CLA so the maintainer can dual-license into HutchDB Cloud. See CONTRIBUTING.md and CLA.md.
Feedback or ideas? Issues are the front door; tell us what you're building.
npm test # vitest
npm run smoke # end-to-end smoke test against a running instance:
# SMOKE_BASE_URL=http://localhost:3000 npm run smoke
# (keyed mode: add SMOKE_API_KEY=...)Status: stable enough for a single-user self-host. Breaking changes land on main; pin a commit if you need stability.
License
This server cannot be deployed
Maintenance
Related MCP Connectors
An agent-native database over MCP: shared, validated, structured records in every AI chat.
Hosted MCP server for AI-driven data ops. Create apps, manage schemas, and CRUD structured data.
- mcpOAuthai.butlerbrain
Persistent memory for AI assistants. Save once; recall from Claude, ChatGPT, or any MCP client.
Persistent AI memory shared across Claude, ChatGPT, coding agents, and compatible MCP clients.
Related MCP Servers
- AlicenseAqualityDmaintenanceGives Claude Code, Claude Desktop, Cursor, VS Code Copilot, and other MCP-compatible tools persistent memory.1834 npm1MIT
- AlicenseCqualityAmaintenanceLocal-first memory for MCP clients. It provides shared durable memory without requiring hosted accounts, vector databases, or API keys, and works with Codex, Claude Code, Cursor, and other MCP clients.2564 npm3MIT

HAMofficial
AlicenseNot gradedqualityCmaintenanceProvides persistent, scoped shared memory for collaborating AI agents, with tools for storing observations, semantic recall, and handoff workflows. Backed by PostgreSQL and exposed through MCP.1Apache 2.0- AlicenseNot gradedqualityCmaintenanceEnables workspace-scoped structured user data and long-term memory through MCP, including entities, relations, notes, and image search with PostgreSQL and pgvector.MIT