MCP Notes Server
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., "@MCP Notes Serveradd a note: implement login with OAuth, high priority"
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.
MCP Notes Server
A Model Context Protocol (MCP) server for developer note-taking. Track your project implementation progress with easy-to-use tools for creating, managing, and exporting development notes.
Features
Add Notes: Create notes for features you're implementing with tags, status, and priority
List Notes: View and filter notes by feature, tags, or status
Update Notes: Modify existing notes as your implementation progresses
Delete Notes: Remove notes that are no longer needed
Export Notes: Export your notes to Markdown or JSON format
Persistent Storage: Notes are saved locally in JSON format
Related MCP server: MCP Notes Server
Installation
pip install mcp-notes-serverUsage
Running the Server
mcp-notes-serverAvailable Tools
add_note: Add a new development note
feature(required): The feature being implementedcontent(required): The note contenttags(optional): Array of tags for categorizationstatus(optional): "in_progress", "completed", or "blocked"priority(optional): "low", "medium", or "high"
list_notes: List notes with optional filtering
feature(optional): Filter by feature name (partial match)tags(optional): Filter by tagsstatus(optional): Filter by status
update_note: Update an existing note
note_id(required): The ID of the note to updatecontent(optional): New contentstatus(optional): New statuspriority(optional): New prioritytags(optional): New tags
delete_note: Delete a note
note_id(required): The ID of the note to delete
export_notes: Export notes to markdown or JSON format
feature(optional): Filter by feature before exportformat(optional): "markdown" or "json" (default: "markdown")
Integration with Claude Desktop
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"notes": {
"command": "mcp-notes-server"
}
}
}Storage
Notes are stored in ~/.mcp_notes/notes.json by default.
Development
To install in development mode:
git clone https://github.com/yourusername/mcp-notes-server.git
cd mcp-notes-server
pip install -e .License
MIT License
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
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.
An MCP server that used to create notes
Markdown-based note-taking with a hosted MCP server. Your notes serve you and your AI.
Related MCP Servers
- AlicenseAqualityDmaintenanceA simple note-taking MCP server for recording and managing notes with AI models.45 npm36GPL 2.0
- AlicenseBqualityDmaintenanceAn MCP server for managing and persisting notes, offering CRUD operations, note summarization, and resource-based access via a note:// URI scheme.47MIT
- FlicenseNot gradedqualityDmaintenanceA TypeScript-based MCP server that enables users to manage text notes with features like note creation and summary generation using a Model Context Protocol.1-
- AlicenseBqualityDmaintenanceThis TypeScript-based MCP server allows users to manage and interact with a note system through Model Context Protocol, enabling note creation and summarization with URIs and metadata.1MIT