MCP Notes
A simple note-taking server for recording and managing notes with AI models, using AWS DynamoDB for storage.
š MCP Notes

⨠Overview
MCP Notes Server is a simple note-taking application built on top of the MCP protocol. Its purpose is to enable users to record and view complex notes and tasks while utilizing AI models, such as recording personal thoughts, notes, inspirations, and insights. It does not rely on creating project files, allowing users to record any content without making it public within the project.
This project includes two servers: a Node.js server using the Model Context Protocol (MCP) for AI-driven note management and a web server providing a user-friendly interface for manual interaction with your notes.
Note: This project requires DynamoDB for note storage. You'll need an AWS account to use it. AWS offers a generous free tier for DynamoDB, making it suitable for frequent personal use at no cost.
šÆ Core Features
- š„ļø Dual Server Architecture: MCP server for AI-driven note management and Web server for the user interface
- š¤ AI-Powered Note Taking: Record thoughts, insights, and tasks through AI interactions
- šļø Comprehensive Note Management: Create, list, retrieve, update, and delete notes via AI or web interface
- š Reliable Storage: Secure and efficient note storage with AWS DynamoDB
- š Flexible Authentication: Support for AWS credentials via connection strings or environment variables
- š Project-Independent: Store personal notes without affecting project files or structure
š¤ Model Support
You can use any model that supports function calls as long as your client supports MCP. The following models have been tested and confirmed to work:
- Claude 3.5 Series
- Gemini 1.5 and 2.0 Series
- GPT-4 Series
- Mistral Large
- Grok-2
- DeepSeek Chat
š ļø Installation
Recommended
Run directly with npx or bunx, see examples below.
Alternative
- Ensure Node.js is installed on your system.
- Clone this repository and install dependencies with:
npm install - Configure Claude Desktop or any other tools as shown below
āļø Credential Configuration
Connection String
dynamodb://<access_key>:<secret_key>@<region>/<table>
Example:
dynamodb://AKIAXXXXXXXX:SKXXXXXXXX@us-east-1/mcp-notes
Environment Variables
- Export
AWS_ACCESS_KEY_IDandAWS_SECRET_ACCESS_KEY. - Supply connection information without credentials in the URI:
dynamodb://us-east-1/mcp-notes
š¤ Integration with Tools
Claude Desktop
Add this snippet to claude_desktop_config.json:
{
"mcpServers": {
"mcp-notes": {
"command": "npx",
"args": [
"-y",
"-p",
"mcp-notes",
"mcp-notes-server",
"--dynamodb",
"dynamodb://access_key:secret_key@region/table"
]
}
}
}
or file on local disks:
{
"mcpServers": {
"mcp-notes": {
"command": "node",
"args": [
"file://path/to/notes-mcp-server.js",
"--dynamodb",
"dynamodb://access_key:secret_key@region/table"
]
}
}
}
Cody
Note: Currently, Cody has limited MCP server support.
It only allows one server connection and cannot make tool calls. You'll need to use the web interface to create and manage notes and then reference them in AI chat conversations.
Add this snippet to your VS Code settings:
{
"openctx.providers": {
"https://openctx.org/npm/@openctx/provider-modelcontextprotocol": {
"nodeCommand": "node",
"mcp.provider.uri": "file://path/to/notes-mcp-server.js",
"mcp.provider.args": [
"--dynamodb",
"dynamodb://access_key:secret_key@region/table"
]
}
}
}
alternatively, use with npx (not guaranteed to work):
{
"openctx.providers": {
"https://openctx.org/npm/@openctx/provider-modelcontextprotocol": {
"nodeCommand": "node",
"mcp.provider.uri": "file:///usr/local/bin/npx",
"mcp.provider.args": [
"-y",
"-p",
"mcp-notes",
"mcp-notes-server",
"--dynamodb",
"dynamodb://access_key:secret_key@region/table"
]
}
}
}
Cline
Add this snippet to cline_mcp_settings.json:
You will find a "MCP Server" icon next to the "New Task" button, and then there is an "Edit MCP Settings" button to open this file.
{
"mcpServers": {
"mcp-notes": {
"command": "npx",
"args": [
"-y",
"-p",
"mcp-notes",
"mcp-notes-server",
"--dynamodb",
"dynamodb://access_key:secret_key@region/table"
]
}
}
}
š Running Web Servers
The web server provides a user-friendly interface for managing your notes. You can launch web interfaces to manage your notes, add new notes for AI, or modify parts of AI-generated notes.
npx -p mcp-notes mcp-notes-web-server --dynamodb "dynamodb://access_key:secret_key@region/table"
bun src/notes-web-server.ts --dynamodb "dynamodb://access_key:secret_key@region/table"
Alternatively, compile with
npm run buildand runnode dist/notes-mcp-server.jsornode dist/notes-web-server.js
Then navigate to http://localhost:3100 in your browser to view notes.
š§ Available MCP Tools
listNotes
- Input:
{ tags?: string[] } - Output: Array of all notes, optionally filtered by tags.
getNote
- Input:
{ id: string } - Output: A single note object matching the given ID, or a "not found" message if no match exists.
writeNote
- Input:
{ id: string, title: string, summary: string, tags: string[], content: string } - Output: A success confirmation message.
deleteNote
- Input:
{ id: string } - Output: Deletion confirmation message š®.
š Data Structure
Notes are stored using the following structure:
id: A unique identifier for the note. It should be descriptive, with a random number suffix, like "meeting-notes-1362".title: The title of the note.summary: A short summary of the note's content.tags: An array of tags associated with the note (e.g., ["meeting", "project-x"]).content: The main content of the note.
šø Screenshots
Claude Desktop
ā Full functionality

Cody
ā Mention Notes via Resource
ā Tool calls are not supported

Cline
ā Full functionality with Tool Calls
ā Resources don't seem to work; help wanted.

Related Servers
Linear MCP Server
Interact with the Linear project management system using its GraphQL API.
Dub.co Short Links (Unofficial)
An unofficial MCP server for creating and managing short links with Dub.co.
PowerPoint MCP Server
Manipulate PowerPoint presentations using the python-pptx library.
floor plan generator
BuildFloorPlan is an AI floor plan generator for homeowners, interior designers, builders, and small planning teams who need to move from rough input to a reviewable layout faster. It turns short briefs, sketches, images, and PDFs into clearer floor plan outputs in seconds, supports technical 2D layouts, colored presentation-ready plans, and quick 3D previews, and helps users compare layout directions before renovation, client presentation, or internal review. It is designed for fast first drafts, supports editing and refinement workflows, and does not require CAD experience. You can start free with starter credits, and paid plans add more credits, longer history, and commercial usage options.
Clarify Prompt MCP
An MCP server that transforms vague prompts into platform-optimized prompts for 58+ AI platforms across 7 categories ā with support for registering custom platforms and providing markdown instruction files.
Logseq MCP Tools
An MCP server that allows AI agents to interact with a local Logseq instance.
Superthread MCP Extended
A perfect drop-in replacement to the official Superthread MCP, providing way more tools. Cloudflare Workers based Remote MCP server
Expense Tracker
Automated expense management with a Supabase backend and hierarchical category support.
Brainstorm
Multi-round AI debates between GPT, DeepSeek, Groq, and Claude ā all models argue, critique, and synthesize inside your coding assistant.
Time MCP Server
Provides current time information and timezone conversion capabilities.