Skip to main content
Glama
al928132

Dev Notes MCP Server

by al928132

Dev Notes MCP Server

A lightweight Model Context Protocol (MCP) server that lets Claude Code save, list, and read markdown notes directly from your conversations — no copy-pasting required.

What It Does & Why It's Useful

This server gives Claude Code three tools:

Tool

Description

save_note

Saves a titled markdown note to your notes directory

list_notes

Lists all saved notes with their last-modified dates

read_note

Reads the contents of a note by title

Instead of manually creating and managing markdown files, you can ask Claude to save notes mid-conversation. Useful for capturing project ideas, debugging notes, meeting summaries, or any reference material you want to persist across sessions.

Related MCP server: NotesKeep MCP Server

Installation

Prerequisites

Steps

  1. Clone the repository:

    git clone https://github.com/al928132/mcp-server.git
    cd mcp-server
  2. Install dependencies:

    npm install
  3. Register the server with Claude Code by adding it to your ~/.claude/claude_desktop_config.json (or equivalent MCP config):

    {
      "mcpServers": {
        "dev-notes-server": {
          "command": "node",
          "args": ["/path/to/mcp-server/index.js"]
        }
      }
    }
  4. Restart Claude Code to load the server.

Usage Examples

1. Saving a Note

"Save a note called 'project-ideas' with ideas for my midterm project."

Claude will call save_note and store the content as project-ideas.md in your configured notes directory.

2. Listing All Notes

"List all my saved notes."

Claude will call list_notes and return a list of all .md files with their last-modified dates.

3. Reading a Note

"Read my 'project-ideas' note."

Claude will call read_note and display the full contents of project-ideas.md.

Limitations & Known Issues

  • Fixed save directory: Notes are saved to a hardcoded path (C:\al928132\dig4503\week4\dev-notes-server). To change it, update the NOTES_DIR constant in index.js and restart the server.

  • No subfolders: All notes are saved flat in a single directory — there is no folder organization or tagging support.

  • Title-based lookup only: Notes are retrieved by title slug. If two titles produce the same slug (e.g., "My Note" and "my note"), they will overwrite each other.

  • No delete tool: There is currently no tool to delete notes — files must be removed manually.

  • Markdown only: The server only handles .md files. Other file types are not supported.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables structured note-taking with markdown support, dynamic tagging system, advanced search capabilities, and markdown export functionality through natural language conversations in Claude Desktop.
    3
    GPL 3.0
  • A
    license
    C
    quality
    D
    maintenance
    Enables users to manage their notes on NotesKeep directly through Claude Code or other MCP clients. It supports creating, updating, and organizing both text and checklist notes using natural language commands.
    14
    17
    1
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables passing notes between Claude rooms on the same machine via Markdown files. Supports listing, reading, and writing notes with security validation.
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Persistent sticky notes for Claude Code. You pin a note — a decision, a blocker, a todo — and it survives session resets, /clear, and closing the terminal. Next time you open Claude in that project, the notes that still matter are handed back to it automatically.
    3
    55
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/al928132/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server