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

mrkdwn-mcp-server

v0.1.1

Published

MCP server for mrkdwn.me — read, create, search, and manage your vault notes from Claude Code or Claude Desktop

Readme

mrkdwn.me MCP Server

An MCP (Model Context Protocol) server that gives LLMs direct access to your mrkdwn.me vault. Use it with Claude Code, Claude Desktop, or any MCP-compatible client to read, create, search, and manage notes and folders.

Prerequisites

  • Node.js 18+
  • A mrkdwn.me account with at least one vault
  • A vault API key (created in the app's Settings dialog)

Quick Start

# 1. Build the server
cd mcp-server
npm install
npm run build

# 2. Test it works
MRKDWN_API_URL=https://beaming-panda-407.convex.site \
MRKDWN_API_KEY=mk_your_key_here \
node dist/index.js

Getting an API Key

  1. Open app.mrkdwn.me and select a vault.
  2. Click the Settings gear icon in the toolbar.
  3. Scroll to Vault API Keys.
  4. Enter a name (e.g. "Claude Code") and click Create.
  5. Copy the key — it starts with mk_ and is only shown once.

Configuration

Claude Code

Add to your project's .claude/settings.json or global ~/.claude/settings.json:

{
  "mcpServers": {
    "mrkdwn": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-server/dist/index.js"],
      "env": {
        "MRKDWN_API_URL": "https://beaming-panda-407.convex.site",
        "MRKDWN_API_KEY": "mk_your_api_key_here"
      }
    }
  }
}

Claude Desktop

Add to your Claude Desktop MCP config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "mrkdwn": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-server/dist/index.js"],
      "env": {
        "MRKDWN_API_URL": "https://beaming-panda-407.convex.site",
        "MRKDWN_API_KEY": "mk_your_api_key_here"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | MRKDWN_API_URL | Yes | The Convex site URL for your deployment | | MRKDWN_API_KEY | Yes | Your vault-scoped API key (starts with mk_) |

Available Tools

Vault

| Tool | Description | |------|-------------| | get_vault | Get vault name and creation date |

Folders

| Tool | Description | |------|-------------| | list_folders | List all folders | | create_folder | Create a folder (params: name, parentId?) | | rename_folder | Rename a folder (params: folderId, name) | | move_folder | Move a folder (params: folderId, parentId?) | | delete_folder | Delete a folder — children are promoted to parent (params: folderId) |

Notes

| Tool | Description | |------|-------------| | list_notes | List all notes (titles and IDs, no content) | | get_note | Get a note's full content (params: noteId) | | create_note | Create a note (params: title, folderId?) | | update_note | Update note content (params: noteId, content) | | rename_note | Rename a note — updates wiki link references (params: noteId, title) | | move_note | Move a note to a folder (params: noteId, folderId?) | | delete_note | Delete a note (params: noteId) | | search_notes | Full-text search (params: query) | | get_backlinks | Get notes linking to a note (params: noteId) | | get_unlinked_mentions | Get unlinked title mentions (params: noteId) |

Security

  • Each API key is scoped to a single vault. The server cannot access other vaults.
  • Only the SHA-256 hash of the key is stored server-side. The raw key is shown once at creation.
  • Keys can be revoked instantly from the Settings UI.

Development

npm run dev      # Watch mode (tsc --watch)
npm run build    # Production build
npm start        # Run the server