带MCP的Claude代理工具
- 此工作流是为Claude构建的,使用 MCP服务器模块
- 服务器连接到claude桌面,帮助您无缝处理笔记。
- 运行项目时,notebook.txt会被正式添加到您的文件夹中以存储笔记
可用组件:
| 组件 | 类型 | 描述 |
|---|---|---|
| add_note | 工具 | 将笔记内容添加到笔记本。内容可以从claude生成 |
| read_all_notes | 工具 | 从笔记本中读取所有内容 |
| read_latest_notes | 工具 | 读取添加到笔记本中的最新笔记 |
| read_indexed_注释 | 工具 | 在笔记本的指定索引处读取笔记 |
| note_summary_prompt | 提示 | 提示法学硕士返回您的笔记摘要 |
| search_note_prompt | 提示 | 提示LLm在您的笔记中搜索信息,并返回包含该信息的笔记的内容和索引 |
如何设置
- 安装
uv用于项目管理和软件包安装
- 克隆存储库
git clone https://github.com/Dr-Aniekan-Udo/Notetaker-MCP-Server.git- 输入项目文件夹
cd Notetaker-MCP-Server- 安装依赖项
uv sync- 将项目安装到claude桌面
uv run mcp install main.py- 打开克劳德,玩得开心
- 如果MCP已连接:
->你应该在claude chat中看到工具 ->您应该看到附件以使用资源和提示(从集成中选择)
- 检查claude配置:
Go to files in claude, click setting, go to developer section click on edit configuration, open the json file with code and editor and ensure it's similar to the code below
{
"mcpServers": {
"Demo": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"mcp",
"run",
"C:\\Users\\username\\"file path to project folder"\\main.py"
]
}
}
}- 在克劳德身上试试这个:
->“写一首关于农业的三行诗,并将其添加到我的笔记中”

