notes-box
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@notes-boxadd a note to remember to buy groceries"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
my-mcp-server
MCP server template I base new tools on
Small but I use it weekly.
Installation
pip install -r requirements.txtRelated MCP server: mcp-snippetbox
Highlights
Three tools: add / get / list notes
Includes Claude Desktop config snippet
FastMCP style: decorators, zero boilerplate
State persisted to a JSON file in the home dir
Examples
# claude_desktop_config.json
# {
# "mcpServers": {
# "notes-box": {"command": "python", "args": ["server.py"]}
# }
# }
python server.pyProject structure
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ └── bug_report.md
│ ├── dependabot.yml
│ └── pull_request_template.md
├── docs/
│ ├── faq.md
│ └── usage.md
├── examples/
│ └── quickstart.md
├── tests/
│ └── test_smoke.py
├── .editorconfig
├── .gitignore
├── CONTRIBUTING.md
├── LICENSE
├── Makefile
├── SECURITY.md
├── requirements.txt
└── server.pyDevelopment
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
python -m pytest -qDevelopment
# run the test suite
pytest -q # or npm test / go test ./...License
MIT licensed, see LICENSE.
This server cannot be deployed
Maintenance
Related MCP Connectors
Google Keep-style notes app with an MCP server for AI agents to read/write notes.
- TaprootOAuthcom.taproothq
Persistent memory layer for AI tools. Save and recall notes across Claude and other MCP clients.
Cross-session, cross-device memory for your agent: remember and recall notes. No key to start.
- KnowtisOAuthapp.knowtis
Create, search and manage Knowtis collaborative notes from AI assistants.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceEnables adding, retrieving, and listing notes with state persisted to a local JSON file.-
- FlicenseNot gradedqualityCmaintenanceEnables adding, retrieving, and listing notes, with state persisted to a JSON file in the home directory.-
- AlicenseNot gradedqualityCmaintenanceEnables Claude Desktop to add, get, and list notes, with state persisted to a JSON file in the home directory.MIT
- AlicenseNot gradedqualityCmaintenanceEnables adding, getting, and listing notes through MCP, with state persisted to a JSON file in the home directory.MIT