AI Skill Hub 推荐使用:MCP集成工具 是一款优质的MCP工具。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
Emacs Org-mode与MCP集成,AI辅助任务
MCP集成工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Emacs Org-mode与MCP集成,AI辅助任务
MCP集成工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/laurynas-biveinis/org-mcp
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"mcp----": {
"command": "npx",
"args": ["-y", "org-mcp"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 MCP集成工具 执行以下任务... Claude: [自动调用 MCP集成工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"mcp____": {
"command": "npx",
"args": ["-y", "org-mcp"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
#+TITLE: org-mcp
[[https://github.com/laurynas-biveinis/org-mcp/actions/workflows/elisp-test.yml][https://github.com/laurynas-biveinis/org-mcp/actions/workflows/elisp-test.yml/badge.svg]] [[https://github.com/laurynas-biveinis/org-mcp/actions/workflows/super-linter.yml][https://github.com/laurynas-biveinis/org-mcp/actions/workflows/super-linter.yml/badge.svg]] [[https://melpa.org/#/org-mcp][https://melpa.org/packages/org-mcp-badge.svg]] [[https://stable.melpa.org/#/org-mcp][file:https://stable.melpa.org/packages/org-mcp-badge.svg]]
org-mcp is an Emacs package that implements a Model Context Protocol (MCP) server for Org-mode. It enables AI assistants and other MCP clients to interact with your Org files through a structured API.
From [[https://melpa.org/#/org-mcp][MELPA]] or [[https://stable.melpa.org/#/org-mcp][MELPA Stable]]:
=M-x package-install RET org-mcp RET=
See [[file:NEWS][NEWS]] for the changelog.
WARNING: some of the tools in this package give LLMs WRITE access to your Org files, and, once in a thousand invocations, LLMs will try to delete everything, because they are like that. Backups and automatic versioning on every change are strongly advised.
** Configuring allowed files
Once you read and internalized the warning above, set the allowed Org file set, using absolute paths:
#+begin_src emacs-lisp (setq org-mcp-allowed-files '("/path/to/foo.org" "/path/to/bar.org")) #+end_src
** Registering with an MCP Client
After =mcp-server-lib= has been properly installed (including =M-x mcp-server-lib-install=), register =org-mcp= with your MCP client:
#+begin_src bash claude mcp add -s user -t stdio org-mcp -- ~/.emacs.d/emacs-mcp-stdio.sh --server-id=org-mcp --init-function=org-mcp-enable --stop-function=org-mcp-disable #+end_src
Before using the MCP server, you must start it in Emacs with =M-x mcp-server-lib-start=. Stop it with =M-x mcp-server-lib-stop= when done.
** Available MCP Resources
Note: File paths in URIs use minimal encoding (only =#= characters are encoded). Avoid using =%= characters in Org file names.
*** org://{filename} - Description: Access the raw content of an allowed Org file - URI Pattern: =org://{filename}= where filename is the absolute path to the file - Configuration: Files must be explicitly allowed via =org-mcp-allowed-files= using absolute paths - Returns: Plain text content of the Org file - Buffer behavior: Reads the file from disk; unsaved changes in an Emacs buffer visiting the file are not reflected.
*** org-outline://{filename} - Description: Get the hierarchical structure of an Org file - URI Pattern: =org-outline://{filename}= where filename is the absolute path to the file - Configuration: Files must be explicitly allowed via =org-mcp-allowed-files= using absolute paths - Returns: JSON representation of the document structure with headings and their levels - Buffer behavior: Reads the file from disk; unsaved changes in an Emacs buffer visiting the file are not reflected.
Example: #+begin_example
高质量的MCP集成工具
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
⚠️ GPL 3.0 — 强 Copyleft,衍生作品须开源,含专利保护条款,不可闭源使用。
总体来看,MCP集成工具 是一款质量良好的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | org-mcp |
| 原始描述 | 开源MCP工具:Emacs Org-mode integration with Model Context Protocol (MCP) for AI-assisted tas。⭐55 · Emacs Lisp |
| Topics | emacslispmcp |
| GitHub | https://github.com/laurynas-biveinis/org-mcp |
| License | GPL-3.0 |
| 语言 | Emacs Lisp |
收录时间:2026-06-01 · 更新时间:2026-06-02 · License:GPL-3.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端