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

derek-memory-mcp

v1.0.1

Published

D.E.R.E.K Memory MCP Server - Share AI specs via Model Context Protocol

Readme

D.E.R.E.K Memory MCP Server

npm version npm downloads License: MIT

Share AI project specifications via Model Context Protocol

A simple MCP server that exposes your project's .kiro memory files (requirements, design docs, tasks) as resources for AI assistants, with tools to generate and serve beautiful HTML documentation.


📦 Installation

Option 1: Using npx (Recommended)

No installation needed! Just add to your MCP config:

{
  "mcpServers": {
    "derek-memory": {
      "command": "npx",
      "args": ["-y", "derek-memory-mcp"]
    }
  }
}

Option 2: Global Installation

npm install -g derek-memory-mcp

Then configure:

{
  "mcpServers": {
    "derek-memory": {
      "command": "derek-memory-mcp"
    }
  }
}

Option 3: Local Development

Clone and use the local script:

{
  "mcpServers": {
    "derek-memory": {
      "command": "node",
      "args": ["/absolute/path/to/derek-memory-mcp-node/index.js"]
    }
  }
}

✨ Quick Setup

That's it! The server auto-detects your .kiro folder in your current project.


📋 What It Provides

Resources (Read-Only)

  • Global memory: PROJECT.md, CONTEXT.md, ARCHITECTURE.md, etc.
  • Feature memory: requirements.md, design.md, tasks.md, notes.md

Tools (Actions)

  1. share_feature_memory - Generate beautiful HTML documentation
  2. serve_html - Start HTTP server to view HTML in browser

🎯 Usage Examples

Read Project Specs

"What resources are available from derek-memory?"
"Read the PROJECT.md resource"
"Show me the requirements for skill-manager feature"

Generate HTML Documentation

"Generate a shareable page for skill-manager"

Creates a beautiful HTML file with:

  • ✅ Tabbed interface (Requirements, Design, Tasks, Notes)
  • ✅ Markdown rendering with syntax highlighting
  • ✅ Professional styling
  • ✅ Mobile-responsive design

View in Browser

"Start an HTTP server to view it"

Opens at http://localhost:8080/ - perfect for sharing with your team!


📁 Project Structure Required

Your project needs a .kiro folder:

your-project/
├── .kiro/
│   ├── resources/          # Global memory
│   │   ├── PROJECT.md
│   │   ├── CONTEXT.md
│   │   └── ...
│   └── features/           # Feature memory
│       └── feature-name/
│           ├── requirements.md
│           ├── design.md
│           ├── tasks.md
│           └── notes.md

🔒 Security

Automatically sanitizes sensitive data before sharing:

  • API keys → [REDACTED]
  • Passwords → [REDACTED]
  • Tokens → [REDACTED]
  • Credentials → [REDACTED]

🚀 Features

Auto-detection - Finds .kiro folder automatically (up to 5 parent levels)
Universal config - Same config works for all projects
Beautiful HTML - Professional documentation with tabs and markdown
HTTP server - Built-in server for viewing HTML
Sanitization - Automatic removal of sensitive data
No installation - Just point to the script


🛠️ Development

Install Dependencies

npm install

Run Locally

node index.js

Test

Open a project with .kiro folder and ask your AI to list resources.


📖 Configuration Locations

Claude Desktop

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Linux: ~/.config/Claude/claude_desktop_config.json

Cline (VS Code)

Settings → Extensions → Cline → MCP Servers

Windsurf

Check Windsurf documentation for MCP configuration.


🎨 HTML Output

Generated HTML includes:

  • Clean, modern design
  • Tabbed navigation
  • Markdown rendering (via markdown-it)
  • Syntax highlighting for code blocks
  • Responsive layout
  • File metadata (last modified dates)

🔗 Links

  • npm Package: https://www.npmjs.com/package/derek-memory-mcp
  • GitHub Repository: https://github.com/dereknguyen269/derek-memory-mcp
  • Issues: https://github.com/dereknguyen269/derek-memory-mcp/issues

🤝 Contributing

Contributions welcome! This is a simple, focused MCP server for sharing project specifications.


📄 License

MIT


Made for better AI-human collaboration 🤖❤️👨‍💻