MCP Note Taker
Click on "Install 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 Note Takeradd a note: Remember to buy groceries tomorrow."
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 Note Taker (POC)
A proof-of-concept implementation of a Model Context Protocol (MCP) server for AI assistant note-taking, featuring custom tools and resources for managing notes.
Overview
This project demonstrates how to create and use a Model Context Protocol (MCP) server that provides note-taking capabilities to AI assistants (such as Claude, Cursor, and others supporting MCP). The server includes:
A tool to add notes
A resource to fetch the latest note
A prompt to summarize all notes
All notes are stored in a local notes.txt file in the project directory.
Related MCP server: Beeper MCP Note Server
Requirements
Python 3.11
Required packages listed in requirements.txt
Installation and Setup
Clone this repository:
git clone https://github.com/yourusername/mcp-server-poc.git
cd mcp-server-pocCreate and activate a virtual environment:
# Init uv package manager
uv init
# Create a Python 3.11 virtual environment
uv venv
# Activate on Windows
.venv\Scripts\activate
# Activate on macOS/Linux
source venv/bin/activateInstall the required packages:
uv pip install -r requirements.txt(Optional) Install MCP CLI tools if needed for development or alternative integrations:
uv add "mcp[cli]"Running the Application
To run the MCP server:
uv run mcpThe server will start and wait for connections using the stdio transport method.
Integrating with Cursor
To use this MCP server with Cursor IDE:
Create or edit the file
~/.cursor/mcp.json(on Windows:C:\Users\<username>\.cursor\mcp.json) with the following content:
{
"mcpServers": {
"mcp-server": {
"command": "python",
"args": [
"ABSOLUTE/PATH/TO/main.py"
]
}
}
}Replace the path with the absolute path to your
main.pyfile.On Windows, use double backslashes:
C:\\Users\\username\\path\\to\\main.pyOn macOS/Linux, use regular slashes:
/Users/username/path/to/main.py
Restart Cursor completely (including ending any background processes) to load the MCP server.
Features
Tools
add_note(note: str): Adds a note to the
notes.txtfile and returns a confirmation message.
Resources
notes://latest: Returns the latest note from the
notes.txtfile, or a message if there are no notes yet.
Prompts
note_summary_prompt(): Generates a prompt asking the AI to summarize all current notes in
notes.txt.
Technical Details
All notes are stored in a plain text file named
notes.txtin the project root. This file is created automatically if it does not exist.The server uses the Model Context Protocol SDK and the
mcp[cli]dependency.
Windows Binary Mode Fix
If you use stdio transport on Windows, you may need to set binary mode for stdin/stdout. See the MCP documentation for details.
Troubleshooting
Verify that all required packages are installed (
pip listto check)Check that the absolute path in the configuration file is correct
Make sure the MCP server is running with the proper version of Python (3.11)
If you encounter issues, try running the MCP server directly to see any error output
License
Acknowledgements
This project uses the Model Context Protocol SDK
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TarcisioPhilips/mcp-note-taker'
If you have feedback or need assistance with the MCP directory API, please join our Discord server