Skip to main content
Glama

mcp-snippetbox

MCP server template I base new tools on

Started as a weekend hack, grew on me.

Highlights

  • Three tools: add / get / list notes

  • Includes Claude Desktop config snippet

  • State persisted to a JSON file in the home dir

  • FastMCP style: decorators, zero boilerplate

Related MCP server: notes-box

Install

pip install -r requirements.txt

Usage

# claude_desktop_config.json
# {
#   "mcpServers": {
#     "notes-box": {"command": "python", "args": ["server.py"]}
#   }
# }
python server.py

Project structure

├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   └── bug_report.md
│   └── dependabot.yml
├── docs/
│   ├── configuration.md
│   ├── development.md
│   ├── roadmap.md
│   └── usage.md
├── examples/
│   └── quickstart.md
├── tests/
│   └── test_smoke.py
├── .editorconfig
├── .gitignore
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── SECURITY.md
├── requirements.txt
└── server.py

Development

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

Changelog

  • 0.1.1 - fix edge case in argument parsing

  • 0.1.0 - first working version

License

MIT licensed, see LICENSE.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables adding, retrieving, and listing notes, with state persisted to a JSON file in the home directory.
    -