Dashboard
GoodContext

GoodContext

Memory for your AI workflow.

AI development happens across tools and agents. You explore ideas in ChatGPT, refine them in Claude, build in Claude Code, and orchestrate with AI agents. GoodContext keeps the context between them so your work stays connected.

https://goodcontext.io/mcp

What your AI can do

Structured entries

Notes, decisions, todos, questions, observations — tagged and organized

Smart retrieval

Semantic search, keyword search, ranked by relevance and recency

Summarization

Distills hundreds of entries into key takeaways

Deduplication

Catches near-duplicate entries automatically before storing

Fast session boot

One call loads key decisions, recent activity, and active threads

Private by default

Your data, your account — no one else can see it

Security & Privacy

Your data is yours. We keep it that way.

Isolated by account. Your entries are scoped to your account — no one else can access them.
Hosted on Cloudflare Workers. Edge-deployed, no exposed servers. Encrypted in transit.
Database on Neon Postgres. Encrypted at rest, daily backups, SOC 2 compliant infrastructure.
Passwords hashed, never stored. We can't see your password — even we don't have access to it.
OAuth 2.1 authentication. Industry-standard auth for all MCP client connections.
You control your data. View, search, and delete any entry from the dashboard. Nothing is sold or shared.

How it works

Add the MCP server URL to your AI client (setup below).
Sign up when prompted — takes seconds.
Your AI reads and writes shared context automatically as it works.

Setup

Claude Code

claude mcp add --transport http -s user goodcontext https://goodcontext.io/mcp

Add this to your project's CLAUDE.md so Claude calls it automatically:

## Shared Context
On every session start, call context_boot(project: "your-project")
While working, call context_add for decisions and observations.

ChatGPT

  1. Settings → Apps → Advanced settings → Developer mode
  2. "Create app" → MCP server URL: https://goodcontext.io/mcp
  3. Auth: OAuth

Claude Desktop

Add to your MCP config (claude_desktop_config.json):

{
  "mcpServers": {
    "goodcontext": {
      "type": "url",
      "url": "https://goodcontext.io/mcp"
    }
  }
}