JSPM

synthesis-mcp

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q23494F
  • License MIT

Persistent project memory for AI coding assistants - never lose context between sessions

Package Exports

  • synthesis-mcp
  • synthesis-mcp/dist/index.cjs

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (synthesis-mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Synthesis

Smithery npm version License

Synthesis MCP

A Model Context Protocol server that gives your AI coding assistant persistent project memory. Never lose context between sessions.

The Problem

Every time you start a new coding session, your AI assistant forgets:

  • What you were working on
  • Decisions you made and why
  • Bugs you fixed and their root causes
  • Patterns you discovered

You end up re-explaining the same context over and over.

The Solution

Synthesis provides 4 tools that maintain project context across sessions:

Tool Purpose
synthesis_start Load project state at session start
synthesis_checkpoint Save progress after significant work
synthesis_lesson Capture bugs fixed and patterns learned
synthesis_search Search past lessons when stuck

Installation

Use the hosted Synthesis server at synthis.tools. Sign up to get an API key.

Claude Code / Cline:

{
  "synthesis": {
    "type": "http",
    "url": "https://api.synthis.tools/mcp",
    "headers": {
      "Authorization": "Bearer YOUR_API_KEY"
    }
  }
}

npx (Local)

Run locally via npx:

{
  "synthesis": {
    "command": "npx",
    "args": ["synthesis-mcp@latest"],
    "env": {
      "SYNTHESIS_HOME": "~/my-synthesis-data"
    }
  }
}

Smithery

npx @smithery/cli install synthesis-mcp

Tools

synthesis_start

Call first when starting work on a project. Loads project state and shows what to do next.

synthesis_start({
  query: "my-project",           // Project name to search for
  register_if_new: true,         // Create if not found
  name: "My Project",            // Display name
  description: "Project desc"    // Optional description
})

synthesis_checkpoint

Call after significant work - saves progress and updates CONTEXT.md.

synthesis_checkpoint({
  project_id: "my-project",
  summary: "Added user authentication",
  files_changed: ["src/auth.ts", "src/routes.ts"],
  completed_steps: [1, 2],
  add_next_step: "Add password reset flow"
})

synthesis_lesson

Call when you solve something - captures lessons for future sessions.

synthesis_lesson({
  project_id: "my-project",
  type: "incident",              // or "pattern"
  title: "Fix CORS headers",
  what_happened: "API calls failing with CORS errors",
  solution: "Added proper Access-Control headers",
  keywords: ["cors", "api", "headers"]
})

Call when stuck - searches past lessons for solutions.

synthesis_search({
  keywords: ["cors", "api"],
  error_message: "Access-Control-Allow-Origin"
})

Data Storage

Synthesis stores project data in a local directory:

~/Claude Synthesis Projects/
├── index.yaml              # Project registry
├── _lessons/               # Cross-project lessons
└── tracking/
    └── my-project/
        ├── CONTEXT.md      # Project state
        └── work-logs/      # Session logs

Set SYNTHESIS_HOME environment variable to change the location.

Development

# Install dependencies
npm install

# Build
npm run build

# Run with MCP Inspector
npm run dev

# Watch mode
npm run watch

License

MIT