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

chat-relay-mcp

v1.0.2

Published

Powerful Cross-IDE Context Sharing via MCP. Persistently sync AI memories and chat sessions between Cursor, VS Code, and more.

Readme

🌐 Chat Relay MCP

npm version License: MIT MCP Protocol

Chat Relay MCP is a high-fidelity Model Context Protocol server designed to bridge the gap between AI-powered IDEs. It provides a persistent, local-first bridge to sync chat sessions, AI memories, and project context across Cursor, Antigravity, VS Code, and more.

[!NOTE] Compatibility: Tested and optimized for Cursor and Antigravity.

✨ Key Features

  • Persistent Continuity: Automatically saves and syncs AI memories across separate sessions using a local SQLite database.
  • Cross-IDE Handoff: Effortlessly transfer conversation context between different IDE (e.g., from Cursor to Antigravity).
  • Zod-Validated Integrity: Strict schema validation ensures AI-generated data is clean, structured, and free from hallucinations.
  • Local-First Privacy: All data stays on your machine. No external cloud dependencies or third-party storage.

🚀 Quick Start

To use Chat Relay, you need to add it to your IDE's MCP configuration.

1. Configuration for Cursor

  1. Open Cursor Settings (Gear icon or Cmd/Ctrl + Shift + J).
  2. Navigate to General -> MCP.
  3. Click on + Add New MCP Server.
  4. Set the name to chat-relay.
  5. Set the type to command.
  6. Paste the following into the Command field:
    npx -y chat-relay-mcp

2. Configuration for Antigravity

  1. Open Antigravity Settings.
  2. Go to Advanced -> MCP Settings.
  3. Click Edit Config File.
  4. Ensure your configuration includes the chat-relay entry inside the mcpServers block:
{
  "mcpServers": {
    "chat-relay": {
      "command": "npx",
      "args": ["-y", "chat-relay-mcp"]
    }
  }
}

🛠️ Tools Available

The relay exposes a suite of tools that your AI can use to manage context:

| Tool | Description | |------|-------------| | create_session | Initialize a new context tracking session with a unique ID. | | save_messages | Batch save conversation history to the persistent database. | | add_memory | Store specific facts or architectural decisions for long-term recall. | | get_session | Generate a comprehensive Handoff Prompt to transfer context to another IDE. | | list_sessions | Retrieve a directory of active context-sharing sessions. | | delete_session | Securely wipe all data associated with a specific session. |

💻 Local Development

If you want to modify the server or run it from source:

  1. Clone the repository:

    git clone https://github.com/akshatmalik-bruh/ClientRelayMcp.git
    cd ClientRelayMcp
  2. Install dependencies:

    npm install
  3. Build the server:

    npm run build
  4. Run in dev mode:

    npm run dev

📜 License

Distributed under the MIT License. See LICENSE for more information.


Built by Akshat Malik