Emacs Org-Mode MCP Server
Allows interaction with Emacs org-mode, providing tools for managing tasks, journal entries, and projects in org-mode files, including listing, creating, updating, searching, and cross-linking.
Click on "Install 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., "@Emacs Org-Mode MCP Serverlist my open tasks"
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.
Emacs Org-Mode MCP Server
An MCP (Model Context Protocol) server that enables Claude to manage Emacs org-mode task lists, journal entries, and projects.
I use Emacs org-mode for organising myself. This mainly revolves around three
things: tasks.org as a tracked task list (active and completed), a
journal/ directory of daily journal files, and projects/ — one file per
project — for longer-running work. Over time I have been leveraging Claude for
bookkeeping and context-linking: reminding me to update a task, suggesting a
journal entry, or noting what I worked on since the last summary.
Claude was surprisingly capable at working with org-mode files directly, but as those files grew it started hitting token limits. A dedicated MCP solves that: tools return only the data Claude needs, structure is maintained correctly, and there is a built-in visual approval step via Emacs ediff before any write lands on disk.
Token Efficiency
Operation | Without MCP (Read/Edit) | With MCP |
Find a task | Read entire | Returns only the matching task |
Search tasks | Read file, Claude parses | Returns only matching results |
List tasks | Read entire file | Returns structured list |
Update task | Read file, generate Edit | Send task content, ediff for approval |
Input tokens — raw file contents never enter the conversation context. Output tokens — Claude passes parameters to the MCP rather than generating careful string-matched Edit calls. Context accumulation — MCP responses are much smaller than repeated file reads over a long conversation.
There is also a reliability benefit: the MCP handles org-mode parsing correctly every time, whereas Claude occasionally makes formatting errors with raw Edit operations.
Related MCP server: Procrastinator MCP Server
Features
Task Management (
~/org/tasks.org)List, create, update, search, and move tasks
Automatic section movement when status changes (
TODO→DONE)Find tasks by
:CUSTOM_ID:, ticket ID (e.g.GH-123), or headlineAuto-maintained High Level Tasks checklist
Visual approval via Emacs ediff before writes
Journal Management (
~/org/journal/)List, create, update, and search journal entries
Date-based file organisation (
YYYYMMDDformat)Tag support (
:daily_summary:,:meeting:, etc.)Visual approval via Emacs ediff before writes
Project Management (
~/org/projects/)One org file per project (
<slug>.org)List, create, update, and search projects
Section-level updates (avoids rewriting entire files)
Cross-linking between projects, tasks, and journal entries
Auto-maintained
index.orgwith all projects grouped by statusStatus values:
active,planning,on-hold,completed
Prerequisites
Python 3.13+
uv for package management
Emacs org-mode files in
~/org/
Installation
cd ~/projects/emacs-org-mcp
# Install dependencies
uv syncConfiguration
Claude Desktop
Prerequisites:
Ensure
uvis in your PATH. Claude Desktop spawns processes without a login shell and may not inherit your shell's PATH. Use the full path touv(e.g./Users/yourname/.local/bin/uv) or add it to a system-wide location.Create the virtual environment first:
cd /path/to/emacs-org-mcp make sync # or: uv sync
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"emacs-org": {
"command": "/Users/yourname/.local/bin/uv",
"args": [
"--directory", "/path/to/emacs-org-mcp",
"run", "server.py"
],
"env": {
"ORG_DIR": "/path/to/org"
}
}
}
}Note: Replace
/Users/yourname/.local/bin/uvwith the output ofwhich uv. Ifuvis reliably in your PATH you can use just"uv".
Claude Code
Add to user scope (available across all projects):
claude mcp add --scope user emacs-org \
-- uv --directory /path/to/emacs-org-mcp run server.pyOr use the Makefile:
make mcp-installOr edit ~/.claude.json directly:
{
"mcpServers": {
"emacs-org": {
"command": "uv",
"args": [
"--directory", "/path/to/emacs-org-mcp",
"run", "server.py"
]
}
}
}Environment Variables
All settings can be overridden via environment variables or command-line flags:
Variable / Flag | Default | Description |
|
| Base org directory |
|
| Journal files directory |
|
| Project files directory |
|
| Section name for active/TODO tasks |
|
| Section name for completed/DONE tasks |
|
| Section name for the high-level task checklist |
|
| Visual approval via Emacs ediff |
| (searches PATH) | Custom path to |
Ediff Approval
By default, all create and update operations present changes visually in Emacs using ediff before applying them. A new Emacs frame opens with a side-by-side diff; you can edit the proposed content (Buffer B) before approving.
Controls (from the ediff control buffer):
Key | Action |
| Approve — apply changes |
| Reject — discard changes |
| Quit — approves by default |
The frame and all buffers close automatically after your decision. If
emacsclient is not available or Emacs is not running, the server falls back
to auto-approve.
To disable ediff approval:
uv run server.py --no-ediff-approval
# or set EMACS_EDIFF_APPROVAL=false in the MCP server envAvailable Tools
Task Tools (7)
Tool | Description |
| List all tasks in a section ( |
| Get a task by |
| Create a new task from a complete org-formatted string |
| Replace a task; auto-moves between sections on status change |
| Move a task between sections without changing content |
| Search tasks by keyword across all sections |
Journal Tools (5)
Tool | Description |
| List entries for a date (defaults to today) |
| Get an entry by time ( |
| Create a new journal entry |
| Update an existing entry |
| Search entries across recent days |
Project Tools (7)
Tool | Description |
| List all projects, optionally filtered by status |
| Get a project by slug, |
| Create a new project file from a complete org-formatted string |
| Update project sections, properties, headline, or tags |
| Search across all project files |
| Add a task link to a project's Related Tasks section |
| Rebuild |
Other
Tool | Description |
| Show server configuration and file paths |
MCP Resources
The server exposes resources that Claude can read directly for format documentation and live data:
Resource URI | Description |
| Task format specification |
| Journal entry format specification |
| Project file format and cross-linking guide |
| Live view of active tasks |
| Live view of completed tasks |
| Today's journal entries |
| All projects grouped by status |
Configuring CLAUDE.md
Add this section to your ~/.claude/CLAUDE.md to instruct Claude to use the
MCP server for all org-mode operations:
## Emacs Org-Mode (Journal, Tasks, Projects)
**CRITICAL: Always use the `mcp__emacs-org__*` MCP tools** for all journal,
task, and project operations. Never use Read/Write/Edit tools or bash commands
directly on these files.
### Format Reference
The MCP server exposes authoritative format guides as resources:
- `emacs-org://guide/journal-format`
- `emacs-org://guide/task-format`
- `emacs-org://guide/project-format`Claude will fetch the detailed format documentation from those resources when
needed, so you do not need to duplicate it in CLAUDE.md.
Testing
# Run all tests
make test
# Verify the server responds to tools/list
make test-mcpLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/scanner/emacs-org-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server