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

@memory-module/mcp

v0.1.0

Published

MCP server for Memory Module — agentic memory for LLM agents

Downloads

68

Readme

@memory-module/mcp

MCP server for Memory Module — agentic memory for LLM agents.

Exposes the full Memory Module API as 10 MCP tools. Works with Claude Code, Cursor, Windsurf, VS Code Copilot, Zed, and any MCP-compatible client.

Quick Start

Add to your MCP client config:

Claude Code (.claude.json):

{
  "mcpServers": {
    "memory-module": {
      "command": "npx",
      "args": ["-y", "@memory-module/mcp"],
      "env": {
        "MEMORY_API_URL": "https://api.memorymodule.io",
        "MEMORY_API_KEY": "your-api-key"
      }
    }
  }
}

Cursor / Windsurf (.cursor/mcp.json or equivalent):

{
  "mcpServers": {
    "memory-module": {
      "command": "npx",
      "args": ["-y", "@memory-module/mcp"],
      "env": {
        "MEMORY_API_URL": "https://api.memorymodule.io",
        "MEMORY_API_KEY": "your-api-key"
      }
    }
  }
}

Tools

Memory

| Tool | Description | |------|-------------| | store_memory | Store a new memory with auto-generated keywords, tags, context, and links | | search_memories | Semantic search with similarity scores and linked memories | | list_memories | Paginated listing with optional dimension filters | | get_memory | Get a single memory by ID | | delete_memory | Delete a memory and clean up bidirectional links |

Batch & Ingestion

| Tool | Description | |------|-------------| | batch_store_memories | Store multiple memories asynchronously | | ingest_document | Chunk and store a long document as memories | | get_job_status | Check async job progress |

Configuration

| Tool | Description | |------|-------------| | list_dimensions | List registered custom filter dimensions | | register_dimensions | Register new filterable dimensions |

Configuration

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | MEMORY_API_KEY | Yes | — | API key for Memory Module | | MEMORY_API_URL | No | http://localhost:8080 | Memory Module API base URL | | REQUEST_TIMEOUT_MS | No | 30000 | Request timeout in milliseconds |

Examples

Store a memory:

The agent calls store_memory with content text. The A-Mem engine auto-generates keywords, tags, and context, then asynchronously discovers links to related memories.

Search with filters:

Register custom dimensions first with register_dimensions (e.g., ["session_id", "project_id"]), then pass them as filters in search_memories to scope results.

Ingest a document:

Call ingest_document with the full text. The system chunks it and stores each chunk as a separate memory. Use get_job_status to track progress.

Development

npm install
npm run build        # Compile TypeScript
npm run dev          # Run with tsx (hot reload)
npm run inspector    # Open MCP Inspector UI

License

MIT