Notes MCP Server
A 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.
README
MCP-сервери: Notes і Git
Два MCP-сервери для підключення до Claude Desktop. Почав з Notes, але було ще цікаво git спробувати.
Встановлення
Вимоги: Python 3.10+, пакет mcp
pip install mcp
Додати до claude_desktop_config.json (%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"notes": {
"command": "python",
"args": ["шлях/до/notes_server.py"]
},
"git": {
"command": "python",
"args": ["шлях/до/git_server.py"],
"env": { "GIT_REPO_PATH": "шлях/до/репозиторію" }
}
}
}
Перезапустити Claude Desktop.
Notes Server
Зберігає нотатки у ~/.mcp_notes/notes.json.
Tools
| Tool | Аргументи | Опис |
|---|---|---|
create_note |
title, content (обов'язкові), tags (опційно) |
Створити нотатку |
update_note |
title (обов'язковий), content, tags (опційно) |
Оновити нотатку |
delete_note |
title (обов'язковий) |
Видалити нотатку |
search_notes |
query (обов'язковий), tag (опційно) |
Пошук по тексту та тегах |
Resources
| Resource | Опис |
|---|---|
notes://all |
Всі нотатки у форматі Markdown |
notes://{title} |
Одна нотатка за назвою |
Приклади діалогів
Створення нотатки:
Збережи нотатку "Покупки" з текстом "Молоко, хліб, яйця, кава" і тегом "особисте".
Пошук:
Знайди всі нотатки з тегом "особисте".
Оновлення:
Онови нотатку "Покупки" — додай до списку "масло".
Обмеження
- Нотатки зберігаються в одному JSON-файлі — не підходить для паралельного запису
- Пошук — простий збіг підрядка, без нечіткого пошуку
notes://allповертає всі нотатки одразу, без пагінації- Назви нотаток унікальні — дублікати не допускаються
Git Server
Дозволяє переглядати стан репозиторію і робити коміти. Репозиторій задається через GIT_REPO_PATH або аргументом repo_path.
Tools
| Tool | Аргументи | Опис |
|---|---|---|
git_status |
repo_path (опційно) |
Статус робочого дерева |
git_log |
repo_path, limit (опційно) |
Історія комітів |
git_diff |
repo_path, file (опційно) |
Незбережені зміни |
git_commit |
message (обов'язковий), repo_path, files (опційно) |
Зробити коміт |
Resources
| Resource | Опис |
|---|---|
git://log |
Останні 10 комітів репозиторію за замовчуванням |
Приклади діалогів
Статус:
Який зараз статус репозиторію?
Коміт:
Зроби коміт усіх змін з повідомленням "fix: виправлено валідацію форми".
Перегляд змін:
Покажи що змінилось у файлі main.py.
Обмеження
- Тільки локальні операції —
push,fetch,pullне підтримуються GIT_REPO_PATHмає бути задано — автовизначення директорії відсутнєgit://logпрацює лише якщо заданоGIT_REPO_PATH, повертає 10 комітів
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.