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

devnote-mcp

v1.0.0

Published

Official MCP server for DevNote — encrypted note-taking and file storage with AI agent integration.

Readme

devnote-mcp

Official Model Context Protocol server for DevNote — an encrypted, self-hosted note-taking and file storage system.

Connect Claude, Cursor, Windsurf, SOJO, or any MCP-compatible AI agent to your DevNote instance in 30 seconds.


Quick Setup

Claude Desktop / Cursor / Windsurf

Add this to your MCP client config:

{
  "mcpServers": {
    "devnote": {
      "command": "npx",
      "args": ["-y", "devnote-mcp"],
      "env": {
        "DEVNOTE_API_KEY": "your_api_key_here",
        "BACKEND_URL": "https://your-devnote-instance.com/api"
      }
    }
  }
}

That's it. No installation, no cloning, no cwd.


SOJO-46 (sojo-agent)

In your SOJO mcp_servers.json:

{
  "devnote": {
    "command": "npx",
    "args": ["-y", "devnote-mcp"],
    "env": {
      "DEVNOTE_API_KEY": "${DEVNOTE_API_KEY}",
      "BACKEND_URL": "${DEVNOTE_BACKEND_URL}"
    }
  }
}

Environment Variables

| Variable | Required | Description | |-------------------|----------|----------------------------------------------------------| | DEVNOTE_API_KEY | ✅ Yes | Your DevNote API key (set in DevNote .env) | | BACKEND_URL | ✅ Yes | Full URL to your DevNote API (e.g. https://example.com/api) |


Available Tools (14)

Notes

| Tool | Description | |------|-------------| | devnote_list_notes | List notes filtered by status (active / pending / rejected / trash) | | devnote_read_note | Read decrypted content of a note by ID | | devnote_create_note | Create a new AES-256-GCM encrypted note | | devnote_update_note | Update and re-encrypt an existing note | | devnote_delete_note | Soft-delete: move to trash | | devnote_restore_note | Restore from trash to active | | devnote_permanent_delete | Permanently destroy a note (irreversible) |

Notifications

| Tool | Description | |------|-------------| | devnote_list_notifications | List pending payload notifications | | devnote_accept_notification | Accept a pending notification | | devnote_reject_notification | Reject a pending notification |

Files

| Tool | Description | |------|-------------| | devnote_upload_file | Upload any file (base64-encoded). Encrypted with AES-256-GCM | | devnote_download_file | Download and decrypt a file. Text→UTF-8, binary→base64 |

System

| Tool | Description | |------|-------------| | devnote_drive_status | Check Google Drive connection status | | devnote_get_capabilities | Fetch the full capability manifest |


Security

  • All notes and files are encrypted with AES-256-GCM at rest
  • API key is injected via environment variable — never hardcoded
  • The MCP server communicates over stdio — no open ports, no network exposure
  • All logs go to stderr so the JSON-RPC stdout stream is never corrupted

Requirements

  • Node.js >= 20
  • A running DevNote instance

License

MIT