Hosted Tier — usemeridian.us¶
The hosted tier gives you a managed Meridian instance with zero local setup. Sign in with Google or GitHub, get an isolated Neon Postgres database, and connect your AI clients over HTTPS in minutes.
Pricing¶
| Free | Standard | Pro | |
|---|---|---|---|
| Price | $0 | $20/mo | Waitlist |
| Status | Live | Live | Coming soon · join waitlist |
| Compute | 0.5 CU | 2 CU | 4 CU |
| Compute hours/mo | 10 CU-hrs total | 50 CU-hrs/mo | 300 CU-hrs |
| Team members | 1 | 20 | Unlimited |
BYODB (Bring Your Own Database): paste your own Neon connection string at signup and skip the managed DB — same price, full control of your data.
Free and Standard include the managed Postgres database, hosted dashboard, and remote MCP endpoint. Pro is waitlist-only.
Sign Up Flow¶
- Visit usemeridian.us and click "Get Started"
- Sign in — Google or GitHub OAuth, no password required
- Check your welcome email — contains your bearer token and MCP config snippet
- Choose Google or GitHub — sign in with either, no passwords
- Open your dashboard — use the dashboard link in the welcome email to land in Meridian
Receiving Your Welcome Email¶
After signing up, you'll receive an email from noreply@usemeridian.us with:
- Your bearer token (
sk_meridian_...) — keep this private - Claude Code config — ready-to-paste
.mcp.jsonsnippet - Claude Desktop config — ready-to-paste config snippet
- Dashboard link —
https://usemeridian.us/dashboard
Configuring Claude Code¶
Paste this into your project's .mcp.json (or ~/.claude/mcp.json for global):
{
"mcpServers": {
"meridian": {
"type": "http",
"url": "https://usemeridian.us/mcp",
"headers": {
"Authorization": "Bearer sk_meridian_your_token_here"
}
}
}
}
No local install required
With the hosted tier, you don't need to clone the repo or install anything locally. Claude Code's native HTTP transport connects directly — no proxy needed.
Configuring Claude Desktop¶
Add to claude_desktop_config.json:
{
"mcpServers": {
"meridian": {
"type": "http",
"url": "https://usemeridian.us/mcp",
"headers": {
"Authorization": "Bearer sk_meridian_your_token_here"
}
}
}
}
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Configuring Cursor¶
Add to .cursor/mcp.json:
{
"mcpServers": {
"meridian": {
"type": "http",
"url": "https://usemeridian.us/mcp",
"headers": {
"Authorization": "Bearer sk_meridian_your_token_here"
}
}
}
}
Dashboard Walkthrough¶
After signing in at https://usemeridian.us/auth/login:
Live tab¶
- Active sessions — all connected Claude sessions with last-seen timestamp and framework badge
- Task feed — real-time stream of what every session is doing
- HITL panel — answer or dismiss pending human-in-the-loop requests inline
Goal tab¶
- North star — long-lived product vision (rarely changes)
- Sprint — current short-term focus
- Version goal — what this version ships; per-field freshness indicators show when each was last updated
Sprint tab¶
- Sprint board — kanban view of all sprint items (pending → in-progress → done)
- Add / claim / complete items from the UI
- Per-item notes — add inline context and annotations to sprint items
Decisions tab¶
- Live constitution — all pinned architectural decisions, newest first
- Workspace decisions — cross-project decisions injected into every session's context
- Add / supersede decisions; AI sessions call
pin_decisiondirectly
Queue tab¶
- Full task log — searchable history of every task logged across all sessions
- Status filter — filter by pending, in-progress, done, failed, backlog
Team tab¶
- Session presence — who's active, last-seen, client type
- Activity heatmap — tasks per human per day
- Session timeline — per-session task history
HITL tab¶
- Queue — all HITL requests with status (pending / answered / dismissed)
- Auto-answer settings — configure Off / Safe / Aggressive mode per project
Rewind tab¶
- Goal history — every version of the goal, newest first
- Activity timeline — every task, session event, and goal change, with timestamps
- Charts — tasks/day per team member, sprint velocity
Files tab¶
- Markdown editor — edit AGENTS.md, ROADMAP.md, DEVLOG.md in-browser
- GitHub hub — view commits, branches, open issues, and workflow runs for connected repos (requires GitHub integration in Settings)
Settings tab¶
- Executor config — repo path, test command, deploy command, branch — injected into
start_session(role='executor') - HITL auto-answer — Off / Safe / Aggressive mode
- Parallel safety — auto-worktrees on claim, require merge approval on complete
- Max pinned decisions — warn when the live constitution reaches this count
Managing Projects¶
Create a project: In the dashboard, click ➕ New Project, enter a name.
Rename a project: Click the kebab (⋮) menu on a project card → Rename.
Delete a project: Click the kebab menu → Delete. Deletes all sessions, tasks, and goals.
Switch projects: Use the project selector in the sidebar.
Account Settings¶
Your account page is at https://usemeridian.us/dashboard → ⚙️ Settings.
From there you can: - View your current plan - Copy your bearer token - Manage billing (Stripe portal) - Delete your account
BYODB Setup¶
Prefer to manage your own Neon database? You can use BYODB:
- Create a Neon account and project
- Copy your connection string:
postgresql://...@....neon.tech/neondb?sslmode=require - At signup, choose "Bring your own database" and paste the URL
Meridian will initialize its schema in your database on first run. Your data never touches our Neon account.
FAQ¶
Q: Can I switch from managed DB to BYODB after signup? A: Email hello@usemeridian.us — we'll migrate you manually.
Q: What happens to my data if I cancel? A: Your Neon database is deleted 28 days after payment failure. You'll receive warning emails on day 3-7 and day 14.
Q: Can multiple team members share one account? A: Yes — unlimited members on all plans. Each member signs in with their own Google/GitHub and connects to the same workspace.
Q: Is there a rate limit on the MCP endpoint? A: 100 requests per minute per bearer token. Sufficient for all normal usage patterns.
Q: I lost my bearer token. How do I get a new one? A: Email hello@usemeridian.us — we'll regenerate it.
Q: Does the hosted tier work with Cursor / Windsurf?
A: Yes — any MCP-compatible client that supports HTTP transport works with the remote /mcp endpoint.
Q: Where is my data stored?
A: Each workspace gets an isolated Neon Postgres database in aws-us-east-2 (US East). No data mixing between customers.