npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

synthesis-mcp

v1.0.0

Published

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

Readme

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

Hosted (Recommended)

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"]
})

synthesis_search

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