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

notama-mcp

v0.1.4

Published

MCP server for Notama note-taking app

Downloads

483

Readme

Notama MCP Server

MCP (Model Context Protocol) server for Notama, allowing AI agents to read and manipulate notes via the REST API.

npm

Quick Start

No installation needed — just use npx:

npx notama-mcp --api-key ntm_YOUR_API_KEY

Generate an API key from Settings → API Keys in any Notama client (web, desktop, or mobile).

Transport Modes

Stdio Mode (Recommended for AI clients)

Runs as a stdio process launched directly by AI clients like Claude Desktop, VS Code Copilot, Cursor, and Windsurf. Uses API key authentication.

npx notama-mcp --api-key ntm_YOUR_API_KEY

Options:

--api-key <key>   Notama API key (ntm_...). Required.
--api-url <url>   Notama server API URL (default: https://my.notama.app/api)
--help, -h        Show help

HTTP Mode (for Docker / multi-user)

Runs as an HTTP server using Streamable HTTP transport. Best for Docker deployments and multi-user setups.

MCP Configuration

Claude Desktop

Edit your config file:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "notama": {
      "command": "npx",
      "args": ["notama-mcp", "--api-key", "ntm_YOUR_API_KEY"]
    }
  }
}

VS Code (GitHub Copilot)

Create .vscode/mcp.json in your project:

{
  "servers": {
    "notama": {
      "command": "npx",
      "args": ["notama-mcp", "--api-key", "ntm_YOUR_API_KEY"]
    }
  }
}

Cursor

Create .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "notama": {
      "command": "npx",
      "args": ["notama-mcp", "--api-key", "ntm_YOUR_API_KEY"]
    }
  }
}

Windsurf

{
  "mcpServers": {
    "notama": {
      "command": "npx",
      "args": ["notama-mcp", "--api-key", "ntm_YOUR_API_KEY"]
    }
  }
}

HTTP Mode (Advanced)

{
  "mcpServers": {
    "notama": {
      "url": "https://mcp.notama.app/mcp",
      "headers": {
        "Authorization": "Bearer ntm_YOUR_API_KEY"
      }
    }
  }
}

Environment Variables

Can be used instead of CLI flags:

| Variable | Description | Default | | ---------------- | ----------------------------------- | ------------------------ | | NOTAMA_API_KEY | Your API key (replaces --api-key) | — | | NOTAMA_API_URL | Server API URL (replaces --api-url) | https://my.notama.app/api |

API Key Authentication

Generate API keys from Settings → API Keys in any Notama client. Keys use the format ntm_<64 hex characters>.

For the HTTP mode endpoint, API keys can be provided via:

  1. Authorization header (recommended): Authorization: Bearer ntm_abc123...
  2. Query string (fallback): ?api_key=ntm_abc123...

Self-Hosting

If you self-host Notama, specify your server URL:

npx notama-mcp --api-key ntm_YOUR_KEY --api-url https://your-server.com/api

Docker Deployment (HTTP Mode)

The MCP HTTP server is included in the docker-compose stack:

mcp:
  build: ./mcp
  ports:
    - "3100:3100"
  environment:
    NOTAMA_API_URL: http://server:8081/api
  depends_on:
    - server
docker compose up -d

Available Tools

Notes

| Tool | Description | | ------------------ | ------------------------------------------------ | | get_note | Get a note by ID with content as markdown | | list_notes | List notes, optionally filtered by parent folder | | create_note | Create a new note with markdown content | | update_note | Update a note (auto-handles version concurrency) | | delete_note | Archive (soft-delete) a note | | get_recent_notes | Get recently updated notes | | get_pinned_notes | Get all pinned notes | | quick_capture | Quickly create a note with content |

Search

| Tool | Description | | -------------- | --------------------------------- | | search_notes | Full-text search across all notes |

Folders

| Tool | Description | | --------------- | --------------------------------- | | list_folders | List all folders | | create_folder | Create a new folder | | move_note | Move a note to a different folder |

Tags

| Tool | Description | | ---------------------- | --------------------------------- | | list_tags | List all tags | | create_tag | Create a new tag | | add_tag_to_note | Add a tag to a note | | remove_tag_from_note | Remove a tag from a note | | get_notes_by_tag | Get all notes with a specific tag |

Testing

MCP Inspector

npx @modelcontextprotocol/inspector npx notama-mcp --api-key ntm_YOUR_API_KEY

Opens a browser UI to interactively test all tools.

Links