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

@memoryplugin/mcp-server

v1.1.0

Published

MCP server for MemoryPlugin API integration

Downloads

350

Readme

MemoryPlugin MCP Server

An MCP (Model Context Protocol) server for MemoryPlugin, enabling AI assistants like Claude to store and retrieve your memories. This server provides a bridge between AI assistants and your MemoryPlugin account, allowing them to:

  • Store new memories
  • Query existing memories
  • Manage memory buckets
  • Search across all memories
  • Retrieve latest or specific memories
  • NEW: Access AI-organized memory categories
  • NEW: Get memories from specific categories
  • NEW: Smart semantic search capabilities

Setup

Getting Your API Token

  1. Go to www.memoryplugin.com/dashboard
  2. Find your API token in the dashboard
  3. Copy the token for use in configuration

Claude Desktop Configuration

Configure the server in your Claude Desktop configuration file:

Option 1: Using npx (recommended, but currently experiencing issues)

{
  "mcpServers": {
    "memoryplugin": {
      "command": "npx",
      "args": ["-y", "@memoryplugin/mcp-server"],
      "env": {
        "MEMORY_PLUGIN_TOKEN": "your-token-here"
      }
    }
  }
}

Option 2: Using global installation (current workaround)

First, install the package globally:

npm install -g @memoryplugin/mcp-server

Then find your Node.js installation path:

which node
# Example output: /Users/username/.nvm/versions/node/v21.7.3/bin/node

And find the installed package path:

npm root -g
# Look for something like: /Users/username/.nvm/versions/node/v22.14.0/lib/node_modules

Add @memoryplugin/mcp-server/dist/index.js to the end of the path you received in the previous step.

So the final path should look like:

/Users/username/.nvm/versions/node/v22.14.0/lib/node_modules/@memoryplugin/mcp-server/dist/index.js

Use these paths in your configuration:

{
  "mcpServers": {
    "memoryplugin": {
      "command": "/Users/username/.nvm/versions/node/v21.7.3/bin/node",
      "args": [
        "/Users/username/.nvm/versions/node/v21.7.3/lib/node_modules/@memoryplugin/mcp-server/dist/index.js"
      ],
      "env": {
        "MEMORY_PLUGIN_TOKEN": "your-token-here"
      }
    }
  }
}

If you experience any startup issues with Option 2, please use Option 1 with global installation instead.

Available Tools

The MCP server exposes these tools to AI assistants:

  1. store_memory

    • Store new memories
    • Optional bucket assignment
    • Automatically prepends current date
  2. get_memories

    • Query memories with filters
    • Search functionality
    • Latest/all options
    • Customizable count
  3. list_buckets

    • View all memory buckets
    • Includes memory counts
  4. create_bucket

    • Create new memory buckets
    • Organize memories by topic/category
  5. get_memories_and_buckets

    • Combined query for efficiency
    • Full filtering support
    • Returns both memories and buckets
  6. get_memory_categories (NEW)

    • List AI-organized memory categories
    • Shows category summaries and memory counts
    • Helps understand memory organization
  7. get_category_memories (NEW)

    • Get memories from specific categories
    • Organized by AI-powered categorization
    • Includes memory details and timestamps
  8. smart_search_memories (NEW)

    • Enhanced semantic search
    • AI-powered query understanding
    • Better search results with context

Example Usage

Here are some example prompts you can use with Claude once the server is configured:

Could you store this as a memory: "Had coffee with Sarah at Blue Bottle, discussed upcoming project deadlines"

Can you show me my latest 5 memories?

Could you create a new bucket called "Work Meetings"?

Search my memories for anything related to "coffee meetings"

# NEW Smart Memory Examples:
Show me the categories in my main bucket

What memories do I have in my "Work Projects" category?

Use smart search to find memories about "machine learning"

Support

For any issues or questions, please contact [email protected]