Skip to main content
Glama
physikerweltvn

my-mcp-server

my-mcp-server

A small MCP server exposing my notes to Claude Desktop

Small but I use it weekly.

Install

pip install -r requirements.txt

Related MCP server: notes-box

Highlights

  • Atomic saves (temp file + os.replace) behind a write lock

  • A missing note raises instead of returning the string 'not found'

  • Notes path set by MCP_NOTES_FILE or --notes-file

  • Every tool carries a real docstring, so clients get descriptions

  • Five tools: add / get / update / delete / list notes

  • Includes a Claude Desktop config snippet with absolute paths

How to use

# claude_desktop_config.json  (use ABSOLUTE paths: Claude does not
# run from the repo directory, so a bare "server.py" is not found)
# {
#   "mcpServers": {
#     "notes-box": {
#       "command": "python",
#       "args": ["/abs/path/to/my-mcp-server/server.py"],
#       "env": {"MCP_NOTES_FILE": "/abs/path/to/notes.json"}
#     }
#   }
# }
python server.py --help

Project structure

├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   └── bug_report.md
│   └── workflows/
│       └── ci.yml
├── docs/
│   ├── configuration.md
│   └── usage.md
├── tests/
│   └── test_notes.py
├── .gitignore
├── CONTRIBUTING.md
├── requirements.txt
└── server.py

Development

python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
python -m pytest -q

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables Claude Desktop to add, get, and list notes, with state persisted to a JSON file in the home directory.
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables a shared persistent knowledge vault for Claude Desktop, allowing notes to be saved, retrieved, searched, updated, and deleted across Chat and Code tabs.
    5
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables managing personal notes through Claude Desktop with add, get, update, delete, and list tools, using atomic saves and a configurable notes file.
    -