Install
$ agentstack add mcp-dr-aniekan-udo-notetaker-mcp-server ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Notetaker MCP Server
Category: MLOps & Tools Tech Stack: Python, MCP, Claude Desktop Status: Complete Thumbnail: assets/thumbnail.png
Overview
An MCP (Model Context Protocol) server that turns Claude Desktop into your personal note-taking assistant. Add notes, read them back, search through them, and get AI-generated summaries — all through natural conversation. A notebook.txt is automatically created when you first run the project.
Features
- Add Notes: Save notes directly from Claude's responses
- Read All Notes: View your entire notebook
- Read Latest: Quickly access your most recent note
- Read by Index: Jump to any specific note
- AI Summary: Ask Claude to summarize your notes
- Search Notes: Find information across all notes with AI-powered search
Project Structure
Notetaker-MCP-Server/
├── main.py # MCP server entry point
├── pyproject.toml # Python dependencies
├── uv.lock # Dependency lock file
├── .python-version # Python version spec
├── LICENSE # MIT License
└── README.md
Quick Start
Prerequisites
- Python 3.10+
- uv
- Claude Desktop
Setup
git clone https://github.com/Dr-Aniekan-Udo/Notetaker-MCP-Server.git
cd Notetaker-MCP-Server
uv sync
uv run mcp install main.py
Configure Claude Desktop
- Open Claude Desktop → Settings → Developer → Edit Config
- Ensure the config matches:
{
"mcpServers": {
"Demo": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"mcp",
"run",
"C:\\Users\\username\\path\\to\\Notetaker-MCP-Server\\main.py"
]
}
}
}
- Restart Claude Desktop
Try It
"Write a three line poem on Agriculture and add it to my note"
Available Tools
| Tool | Type | Description | |------|------|-------------| | add_note | Tool | Add content to your notebook | | read_all_notes | Tool | Read all notes | | read_latest_notes | Tool | Read the most recent note | | read_indexed_notes | Tool | Read note at a specific index | | note_summary_prompt | Prompt | Get AI summary of your notes | | search_note_prompt | Prompt | Search notes for specific info |
Tech Stack
- Protocol: Model Context Protocol (MCP)
- Client: Claude Desktop
- Language: Python 3.10+
- Package Manager: uv
Contact
- Email: [Aniekan Udo @Gmail](mailto:aniekanetimudo+reachout@gmail.com)
- LinkedIn: Aniekan Udo @Linkedin
License
MIT
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Dr-Aniekan-Udo
- Source: Dr-Aniekan-Udo/Notetaker-MCP-Server
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.