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

@memorystack/mcp-installer

v1.0.2

Published

One-click MCP installer for MemoryStack - connects your AI to persistent memory

Readme

@memorystack/mcp-installer

One-click MCP installer for MemoryStack - connects your AI to persistent memory.

Quick Start

# One-click install with OAuth (recommended)
npx @memorystack/mcp-installer --client cursor --oauth

# Or with existing API key
npx @memorystack/mcp-installer --client cursor --token ms_your_api_key

Supported Clients

| Client | Flag | |--------|------| | Cursor | --client cursor | | Claude Desktop | --client claude_desktop | | VSCode | --client vscode | | Kiro | --client kiro | | Cline | --client cline |

How It Works

  1. Run the installer with --oauth
  2. Browser opens for authentication
  3. Login with your MemoryStack account
  4. API key is automatically generated and saved
  5. Restart your AI client - done!

Options

-c, --client <client>  AI client (cursor, claude_desktop, vscode, kiro, cline)
--oauth                Use browser-based OAuth authentication (recommended)
--token <token>        Use existing API token instead of OAuth
--url <url>            Custom MemoryStack URL (default: https://memorystack.app)
-V, --version          Output version number
-h, --help             Display help

Config File Locations

The installer automatically writes to the correct config file:

  • Cursor: ~/.cursor/mcp.json
  • Claude Desktop (Mac): ~/Library/Application Support/Claude/claude_desktop_config.json
  • Claude Desktop (Windows): %APPDATA%\Claude\claude_desktop_config.json
  • Kiro: ~/.kiro/settings/mcp.json
  • VSCode: .vscode/mcp.json (in current directory)
  • Cline: ~/.cline/mcp.json

What Gets Installed

The installer adds this configuration to your MCP config:

{
  "mcpServers": {
    "memorystack": {
      "command": "npx",
      "args": ["-y", "@memorystack/mcp-server@latest"],
      "env": {
        "MEMORYSTACK_API_KEY": "ms_...",
        "MEMORYSTACK_BASE_URL": "https://memorystack.app"
      }
    }
  }
}

Available MCP Tools

After installation, your AI will have access to:

  • create_memory - Store new memories
  • search_memories - Hybrid search (vector + text)
  • list_memories - Browse memories with pagination
  • get_memory - Get memory by ID
  • update_memory - Update existing memory
  • delete_memory - Delete a memory
  • reflect_on_memories - Generate insights from patterns
  • consolidate_memories - Merge similar memories
  • get_memory_stats - Usage statistics

Links