
Security News
GitHub Actions Checkout Now Blocks Risky pull_request_target Checkouts
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.
misonote-mcp
Advanced tools
MCP (Model Context Protocol) client for Misonote Markdown documentation system - AI-native document management
AI 原生的文档管理系统 - 通过 MCP 协议将 Misonote Markdown 与 Cursor 编辑器深度集成,让 AI 成为您的智能文档助手
| 功能模块 | 描述 | 支持的操作 |
|---|---|---|
| 📝 文档管理 | 完整的文档生命周期管理 | 创建、读取、更新、删除、列表 |
| 🔍 智能搜索 | 全文搜索与智能排序 | 内容搜索、标题搜索、路径搜索 |
| 🧠 记忆系统 | AI 个性化记忆存储 | 习惯、偏好、复盘、洞察 |
| 🔗 链接生成 | 自动生成分享链接 | 在线访问、即时分享 |
| 🛠️ 服务器管理 | 服务器状态与能力查询 | 健康检查、能力查询 |
| 记忆类型 | 用途 | 示例 |
|---|---|---|
| habits | 工作习惯记录 | "我习惯使用 TypeScript 而不是 JavaScript" |
| preferences | 技术偏好 | "我偏好使用 Tailwind CSS 进行样式设计" |
| retrospectives | 项目复盘 | "这次重构学到了组件设计的重要性" |
| insights | 学习洞察 | "发现使用 React Query 能大幅简化状态管理" |
依赖项目: 需要配合 misonote-markdown 文档服务器使用
一键安装,零配置!
npm install -g misonote-mcp
git clone https://github.com/leeguooooo/misonote-mcp-client.git
cd misonote-mcp-client
npm install
无需配置! 安装后自动生效。
在 Cursor 设置中添加:
{
"mcpServers": {
"misonote": {
"command": "misonote-mcp",
"env": {
"MCP_SERVER_URL": "http://localhost:3000",
"MCP_API_KEY": "your-api-key-here"
}
}
}
}
{
"mcpServers": {
"misonote": {
"command": "node",
"args": ["/path/to/misonote-mcp-client/misonote-mcp-client.js"],
"env": {
"MCP_SERVER_URL": "http://localhost:3000",
"MCP_API_KEY": "your-api-key-here"
}
}
}
}
在 Misonote Markdown 服务器管理界面中创建 API 密钥:
启动服务器
# 本地开发
pnpm dev
# 或 Docker 部署
docker run -p 3000:3000 leeguo/misonote-markdown
访问管理界面
http://localhost:3000/admin创建 API 密钥
MCP Client)read, write, mcp 权限密钥格式
mcp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx👤 用户: "帮我创建一个 Next.js 部署指南"
🤖 AI: 文档创建成功!
📄 路径: deployment/nextjs-guide
🔗 在线地址: http://localhost:3000/docs/deployment/nextjs-guide
📖 点击地址即可查看文档
👤 用户: "搜索所有关于 Docker 的文档"
🤖 AI: 🔍 找到 3 个相关文档:
1. **docker-deployment.md** - 相关性: 9/10
📄 路径: deployment/docker-deployment
🔗 在线地址: http://localhost:3000/docs/deployment/docker-deployment
📝 摘要: Docker 容器化部署完整指南...
2. **docker-compose.md** - 相关性: 8/10
📄 路径: infrastructure/docker-compose
🔗 在线地址: http://localhost:3000/docs/infrastructure/docker-compose
👤 用户: "我习惯使用 TypeScript 而不是 JavaScript"
🤖 AI: 🧠 已记录您的编程习惯!
以后在代码示例中我会优先使用 TypeScript
👤 用户: "我偏好使用 Tailwind CSS 进行样式设计"
🤖 AI: 🎨 已记录您的技术偏好!
在样式相关的建议中我会推荐 Tailwind CSS 方案
| 变量名 | 描述 | 默认值 | 必需 |
|---|---|---|---|
MCP_SERVER_URL | Misonote 服务器地址 | http://localhost:3000 | ✅ |
MCP_API_KEY | API 认证密钥 | - | ✅ |
| 工具名 | 功能 | 参数 |
|---|---|---|
list_documents | 获取文档列表 | path? |
get_document | 获取文档内容 | path |
create_document | 创建新文档 | path, content, title?, metadata? |
update_document | 更新文档 | path, content, title?, metadata? |
delete_document | 删除文档 | path |
search_documents | 搜索文档 | query, searchType?, path? |
get_document_url | 获取访问链接 | path |
| 工具名 | 功能 | 参数 |
|---|---|---|
add_memory | 添加记忆 | type, content, project?, tags? |
get_memories | 获取记忆 | project?, type? |
search_memories | 搜索记忆 | query, project?, type? |
list_memory_projects | 列出项目 | - |
| 工具名 | 功能 | 参数 |
|---|---|---|
get_server_info | 获取服务器信息 | - |
| 平台 | 链接 | 特点 |
|---|---|---|
| Smithery.ai | misonote-mcp-client | 🌟 一键安装,零配置 |
| NPM | misonote-mcp | 📦 全局安装,命令行使用 |
| GitHub | misonote-mcp-client | 🛠️ 源码安装,开发调试 |
| 项目 | 链接 | 描述 |
|---|---|---|
| Misonote Markdown | GitHub | 📝 文档服务器主项目 |
| Docker 镜像 | Docker Hub | 🐳 容器化部署 |
# 检查版本
npm info misonote-mcp version
# 检查更新
npm outdated -g misonote-mcp
# 更新到最新版本
npm update -g misonote-mcp
API Key 无效 (401 错误)
mcp_ 开头)权限不足 (403 错误)
mcp 权限read, write, mcpadmin 权限连接失败 (ECONNREFUSED)
MCP_SERVER_URL 地址和端口正确找不到管理界面
http://localhost:3000/adminMCP 客户端内置详细的错误处理和调试信息,出现问题时会显示:
MIT License - 详见 LICENSE 文件
欢迎贡献代码!请遵循以下步骤:
git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)FAQs
MCP (Model Context Protocol) client for Misonote Markdown documentation system - AI-native document management
The npm package misonote-mcp receives a total of 8 weekly downloads. As such, misonote-mcp popularity was classified as not popular.
We found that misonote-mcp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.