Notes MCP 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., "@Notes MCP Servercreate a note titled 'Meeting Notes' about the project timeline discussion"
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.
Notes MCP Server - Quản lý Ghi chú Cá nhân
MCP Server để quản lý ghi chú cá nhân với AI Agent. Hỗ trợ tạo, đọc, cập nhật, xóa và tìm kiếm ghi chú.
Tính năng
✅ Tạo ghi chú mới với tiêu đề, nội dung và tags
📖 Đọc ghi chú theo ID
✏️ Cập nhật ghi chú hiện có
🗑️ Xóa ghi chú
📚 Liệt kê tất cả ghi chú (có thể lọc theo tag)
🔍 Tìm kiếm ghi chú theo từ khóa
Related MCP server: Notes MCP Server
Cài đặt
Yêu cầu
Python 3.10 trở lên
uv hoặc pip
Cài đặt uv (nếu chưa có)
# Windows (PowerShell)
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | shCài đặt dependencies
uv pip install mcpCấu hình MCP
Thêm vào file .kiro/settings/mcp.json:
{
"mcpServers": {
"notes-manager": {
"command": "python",
"args": ["notes_mcp_server.py"],
"disabled": false,
"autoApprove": [
"create_note",
"read_note",
"update_note",
"delete_note",
"list_notes",
"search_notes"
]
}
}
}Hoặc sử dụng uvx (khuyến nghị):
{
"mcpServers": {
"notes-manager": {
"command": "uvx",
"args": ["--from", ".", "notes-mcp-server"],
"disabled": false,
"autoApprove": ["create_note", "read_note", "list_notes", "search_notes"]
}
}
}Sử dụng
Tạo ghi chú mới
Tạo ghi chú mới với tiêu đề "Ý tưởng dự án" và nội dung "Xây dựng ứng dụng quản lý task"Đọc ghi chú
Đọc ghi chú có ID 20241201_143000Liệt kê ghi chú
Liệt kê tất cả ghi chúTìm kiếm
Tìm kiếm ghi chú có từ "dự án"Cập nhật ghi chú
Cập nhật ghi chú 20241201_143000 với nội dung mớiXóa ghi chú
Xóa ghi chú 20241201_143000Lưu trữ
Ghi chú được lưu tại: ~/.kiro_notes/
Mỗi ghi chú là một file JSON với cấu trúc:
{
"id": "20241201_143000",
"title": "Tiêu đề",
"content": "Nội dung ghi chú",
"tags": ["tag1", "tag2"],
"created_at": "2024-12-01T14:30:00",
"updated_at": "2024-12-01T14:30:00"
}Công cụ có sẵn
create_note - Tạo ghi chú mới
read_note - Đọc ghi chú theo ID
update_note - Cập nhật ghi chú
delete_note - Xóa ghi chú
list_notes - Liệt kê ghi chú (có thể lọc theo tag)
search_notes - Tìm kiếm ghi chú
Khắc phục sự cố
Server không kết nối
Kiểm tra Python đã cài đặt:
python --versionKiểm tra mcp đã cài:
pip list | grep mcpXem log trong MCP Server view của Kiro
Không tìm thấy ghi chú
Ghi chú được lưu tại
~/.kiro_notes/Kiểm tra quyền truy cập thư mục
License
MIT
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.
- SumibakoOAuthcom.sumibako
Write pages into your notes vault, search them, and publish one as a shareable link.
Markdown-based note-taking with a hosted MCP server. Your notes serve you and your AI.
Personal knowledge base MCP server with semantic search, auto-categorization, metadata extraction
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA local note-taking server that provides intelligent management of markdown files through hybrid keyword and AI-powered semantic search. It enables users to create, find, and retrieve notes using advanced indexing, vector embeddings, and a built-in web viewer.MIT
- FlicenseBqualityDmaintenanceA simple server for saving, listing, and searching notes persisted to a local JSON file. It enables users to manage their personal notes using natural language via the Model Context Protocol.3-
- FlicenseNot gradedqualityDmaintenanceA minimal MCP server for persistent note-taking, enabling create, update, delete, and search of notes with tags, plus resource-based retrieval of all notes or by title.-
- FlicenseNot gradedqualityDmaintenanceA server for managing notes with full CRUD operations, tagging, and search, compatible with Claude Desktop.-