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

@skillkit/mcp-memory

v1.8.1

Published

MCP (Model Context Protocol) server for SkillKit persistent memory

Readme

@skillkit/mcp-memory

MCP (Model Context Protocol) server for SkillKit persistent memory. Enables Claude, Cursor, and other MCP-compatible tools to store, search, and recall memories with semantic embeddings.

Installation

npm install @skillkit/mcp-memory
# or
pnpm add @skillkit/mcp-memory

Usage with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "skillkit-memory": {
      "command": "npx",
      "args": ["@skillkit/mcp-memory"],
      "env": {
        "SKILLKIT_AGENT_ID": "claude-desktop"
      }
    }
  }
}

Usage with Cursor

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "skillkit-memory": {
      "command": "npx",
      "args": ["@skillkit/mcp-memory"],
      "env": {
        "SKILLKIT_AGENT_ID": "cursor"
      }
    }
  }
}

Environment Variables

  • SKILLKIT_AGENT_ID - Agent identifier for memory isolation (default: mcp-memory-server)
  • SKILLKIT_MEMORY_DB_PATH - Custom database path (default: ~/.skillkit/memory.db)

Available Tools

memory_store

Store a new memory with semantic embedding.

memory_store({
  content: "User prefers TypeScript over JavaScript",
  category: "preference",
  tags: ["language", "coding"]
})

memory_search

Semantic search through stored memories.

memory_search({
  query: "What programming languages does the user prefer?",
  limit: 5,
  threshold: 0.5
})

memory_recall

Recall memories by category, tier, or tags.

memory_recall({
  category: "decision",
  tier: "long",
  limit: 10
})

memory_get

Get a specific memory by ID.

memory_get({ id: "memory-uuid" })

memory_forget

Delete a memory.

memory_forget({ id: "memory-uuid" })

memory_link

Create relationships between memories.

memory_link({
  sourceId: "memory-1",
  targetId: "memory-2",
  relationshipType: "supports",
  strength: 0.8
})

memory_reinforce

Strengthen or weaken a memory. Strong memories get promoted to long-term tier.

memory_reinforce({
  id: "memory-uuid",
  amount: 0.1  // positive to strengthen, negative to weaken
})

memory_stats

Get memory statistics.

memory_stats({})

Memory Categories

  • fact - Factual information
  • decision - Decisions made
  • preference - User preferences
  • pattern - Observed patterns
  • insight - Derived insights
  • reasoning - Reasoning chains

Memory Tiers

  • warm - Recent, frequently accessed memories
  • long - Consolidated long-term memories

Memories are automatically promoted from warm to long based on access count, reinforcement score, and age.

Resources

The server exposes two resources:

  • memory://stats - Current memory statistics (JSON)
  • memory://recent - 10 most recent memories (JSON)

License

Apache-2.0