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

@arvoretech/memory-mcp

v1.1.0

Published

MCP server for team memory — persistent knowledge base with semantic search for AI-assisted development

Readme

@arvoretech/memory-mcp

MCP server for team memory — a persistent knowledge base with semantic search for AI-assisted development.

What is Team Memory?

Team memory captures accumulated knowledge over time: architectural decisions, coding conventions, incident learnings, domain knowledge, and gotchas. Unlike skills (which are prescriptive patterns), memories are descriptive facts the team has learned.

Tools

| Tool | Description | |------|-------------| | search_memories | Semantic search across all memories | | get_memory | Get full content of a specific memory | | add_memory | Create a new memory entry | | list_memories | List memories with optional filters | | archive_memory | Soft-delete a memory | | remove_memory | Permanently delete a memory |

Memory Categories

  • decisions — Architectural Decision Records (ADRs)
  • conventions — Team coding standards and preferences
  • incidents — Past bugs, outages, and their root causes
  • domain — Business domain knowledge and glossary
  • gotchas — Known issues, quirks, and workarounds

Memory File Format

---
title: Use PostgreSQL for all services
category: decisions
date: 2024-06-01
author: joao.barros
tags: [database, architecture]
status: active
---

## Context
We needed to choose between PostgreSQL and MongoDB.

## Decision
PostgreSQL, because we need ACID transactions and complex joins.

## Consequences
- Migrations managed by Ecto and Prisma
- No dynamic schema flexibility

Semantic Search

Uses @xenova/transformers with the paraphrase-multilingual-MiniLM-L12-v2 model for local embeddings, stored in LanceDB (an embedded vector database in memories/.lancedb/). Supports Portuguese and English queries with cosine similarity search and metadata filtering.

Falls back to keyword search if the embedding model fails to load.

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | MEMORY_PATH | ./memories | Path to the memories directory | | MEMORY_EMBEDDING_MODEL | Xenova/paraphrase-multilingual-MiniLM-L12-v2 | HuggingFace model for embeddings |

Usage with hub.yaml

mcps:
  - name: team-memory
    package: "@arvoretech/memory-mcp"
    env:
      MEMORY_PATH: ./memories

Development

pnpm install
pnpm dev          # Run with tsx
pnpm build        # Compile TypeScript
pnpm test         # Run tests
pnpm test:cov     # Run tests with coverage