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 🙏

© 2025 – Pkg Stats / Ryan Hefner

codearchitect-mcp

v0.1.8

Published

Context continuity MCP server for developers. Solves AI conversation loss - automatically preserves architecture and code discussions for clear productivity advantage. Works seamlessly with Cursor and VS Code. Next: Full system design and architecture ass

Downloads

594

Readme

CodeArchitect MCP

Your AI conversations shouldn't disappear. CodeArchitect MCP automatically saves and retrieves your discussions with AI assistants, solving context continuity for developers. Never re-explain architecture decisions or code solutions. Built on Model Context Protocol (MCP) - works seamlessly with Cursor and VS Code. Expanding into comprehensive system design and architecture assistance.

Quick Start

1. Install Node.js

Download from nodejs.org (v18+). Open terminal → type node --version to verify.

2. Install Package

npm install -g codearchitect-mcp

3. Configure IDE

Step 1: Open Cursor Settings

  1. Open Cursor (the code editor)
  2. Look at the bottom left corner - click the gear icon ⚙️ (or press Ctrl+, on Windows/Linux, Cmd+, on Mac)
  3. This opens Settings

Step 2: Find MCP Settings

  1. In the Settings search box at the top, type: "MCP" or "Model Context Protocol"
  2. You should see "Tools & MCP" section
  3. Click on it

Step 3: Add CodeArchitect Server

  1. Look for "MCP Servers" or "Add Server" button
  2. Click "Add Server" or the + button
  3. A form will appear. Fill it in:
    • Name: codearchitect (or any name you like)
    • Command: npx
    • Args: -y codearchitect-mcp@latest
  4. Click Save or OK

OR (Alternative Method - Manual Config File):

  1. Close Cursor
  2. Open File Explorer (Windows) or Finder (Mac)
  3. Go to your home folder:
    • Windows: C:\Users\YourName\.cursor\ (create .cursor folder if it doesn't exist)
    • Mac/Linux: ~/.cursor/ (create .cursor folder if it doesn't exist)
  4. Create a file named mcp.json in that folder
  5. Open it in any text editor and paste this:
{
  "mcpServers": {
    "codearchitect": {
      "command": "npx",
      "args": ["-y", "codearchitect-mcp@latest"]
    }
  }
}
  1. Save the file
  2. Open Cursor again

Step 4: Verify It's Working

  1. In Cursor, look at the bottom status bar
  2. You should see "MCP" or "codearchitect" with a green dot (connected)
  3. If you see red or yellow, something went wrong - see troubleshooting below

Step 5: Reload Cursor

  1. Press Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (Mac)
  2. Type: "Reload Window"
  3. Press Enter
  4. Cursor will restart - wait for it to finish loading

Step 6: Test It Works

  1. Open any chat/conversation in Cursor
  2. Type: "use codearchitect"
  3. You should see a list of features and workflow guide
  4. If you see an error, see troubleshooting below

Export Chat (How to Save Conversations)

  1. In Cursor chat, look at the top right corner
  2. Click the three dots menu (⋯)
  3. Click "Export Chat"
  4. A save dialog appears
  5. Navigate to: C:\Users\YourName\.codearchitect\exports\ (Windows) or ~/.codearchitect/exports/ (Mac/Linux)
    • Create the exports folder if it doesn't exist
  6. Click Save
  7. The file will be saved as .md format (that's normal)

Need Help?

Stuck at any step? Reach out to Tair:

Step 1: Open Command Palette

  1. Open VS Code (Visual Studio Code)
  2. Press Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (Mac)
  3. A box appears at the top - this is the Command Palette

Step 2: Add MCP Server

  1. In the Command Palette box, type: "MCP: Add Server"
  2. You should see "MCP: Add Server..." appear in the list
  3. Click it (or press Enter)

Step 3: Choose Installation Method

  1. A menu appears asking how to install
  2. Choose: "Download with npm package" (click it)
  3. Another box appears asking for the package name

Step 4: Enter Package Name

  1. Type exactly: codearchitect-mcp
  2. Press Enter
  3. VS Code will download and install it (wait a few seconds)

Step 5: Verify It's Working

  1. Look at the bottom right corner of VS Code
  2. You should see "MCP" or "codearchitect" with a green indicator (connected)
  3. If you see red or an error, see troubleshooting below

Step 6: Reload VS Code

  1. Press Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (Mac) again
  2. Type: "Developer: Reload Window"
  3. Press Enter
  4. VS Code will restart - wait for it to finish

Step 7: Test It Works

  1. Open any chat/conversation in VS Code
  2. Type: "use codearchitect"
  3. You should see a list of features and workflow guide
  4. If you see an error, see troubleshooting below

Export Chat (How to Save Conversations)

  1. In VS Code chat, press Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (Mac)
  2. Type: "Export Chat"
  3. Click "Export Chat" from the list
  4. A save dialog appears
  5. IMPORTANT: Name your file something meaningful, like:
    • auth-implementation.json
    • database-design.json
    • api-routes.json
    • (Use .json at the end - VS Code will add it automatically)
  6. Navigate to: C:\Users\YourName\.codearchitect\exports\ (Windows) or ~/.codearchitect/exports/ (Mac/Linux)
    • Create the exports folder if it doesn't exist
  7. Click Save
  8. The file will be saved as .json format (that's normal - CodeArchitect supports this!)

Need Help?

Stuck at any step? Reach out to Tair:

4. Verify Setup

  • Check MCP status: Should show green/connected in IDE
  • Test: Say "use codearchitect" - should see features list
  • If not working: Reload IDE and check MCP logs / Reach out to Tair

5. Start Using

  • "use codearchitect" - See features and workflow guide
  • "use codearchitect store_session" - Save conversation
  • "use codearchitect get_session" - Retrieve session
  • "use codearchitect search_session [query]" - Search across all sessions

Storage

Main location: ~/.codearchitect/sessions/ (always)

  • Windows: C:\Users\YourName\.codearchitect\sessions\
  • Linux/Mac: ~/.codearchitect/sessions/

Optional: Also save to project folder (specify projectDir)

Exports: ~/.codearchitect/exports/ (for export file detection)

Workflow

  1. Export chat → Save to ~/.codearchitect/exports/
  2. Store session"use codearchitect store_session"
  3. Retrieve"use codearchitect get_session [topic]"
  4. Search"use codearchitect search_session [query]" - Find sessions by keyword
  5. Repeat → Build knowledge base iteratively

Docs

Links


Made with ❤️ by Tair Kaldybayev