plugins marketplace
← All plugins

org-mcp-server

v0.1.1

Org-mode skills for Codex: agenda, task management, and document search.

CodexClaude Code4 skills

by Sebastián ZaffaranoMIT41updated 1 day ago

Source

git clone https://github.com/szaffarano/org-mcp-server

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

org-mcp-server/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/org-agenda/SKILL.md
├── skills/org-capture/SKILL.md
├── skills/org-search/SKILL.md
└── skills/org-update-todo/SKILL.md

Skills4

org-agendaskills/org-agenda/SKILL.md

View and manage org-mode agenda, scheduled tasks, TODOs, and deadlines via the org MCP server. Use when the user asks about their schedule, agenda, tasks, or deadlines. Triggers: "show my agenda", "what's on my schedule", "tasks for today", "tomorrow's agenda", "what do I have this week", "show next week", "last week's tasks", "my TODOs", "show deadlines", "high priority tasks", "what's overdue", or any request about scheduled items, TODO states, or calendar-like task views.

org-captureskills/org-capture/SKILL.md

Create new org-mode headings and notes via the org MCP server. Use when the user wants to add a new task, note, journal entry, or any new heading to their org files. Triggers: "add a task", "create a note", "capture this", "log an entry", "add to my notes", "create a TODO", "add a journal entry", "record this idea", or any request to write new content into org files.

org-searchskills/org-search/SKILL.md

Search and browse org-mode documents via the org MCP server. Use when the user wants to find content across org files, list their org documents, read file contents, or navigate headings and outlines. Triggers: "search my notes for...", "find org pages about...", "list my org files", "show outline of...", "read the section about...", "find documents tagged with...", "what files do I have about...", or any request to search, browse, read, or navigate org-mode documents and their content.

org-update-todoskills/org-update-todo/SKILL.md

Update the TODO state and metadata of an existing org-mode heading via the org MCP server. Use when the user wants to change a task's state, priority, tags, or timestamps. Triggers: "mark as done", "complete this task", "reschedule", "change priority", "update the deadline", "close this TODO", "set a deadline", "retag this", "move to IN_PROGRESS", or any request to modify an existing task or heading's metadata.

Manifests2

.codex-plugin/plugin.json
{
  "name": "org-mcp-server",
  "version": "0.1.1",
  "description": "Org-mode skills for Codex: agenda, task management, and document search.",
  "author": {
    "name": "Sebastián Zaffarano",
    "email": "sebas@zaffarano.com.ar",
    "url": "https://github.com/szaffarano"
  },
  "homepage": "https://github.com/szaffarano/org-mcp-server",
  "repository": "https://github.com/szaffarano/org-mcp-server",
  "license": "MIT",
  "keywords": [
    "org-mode",
    "agenda",
    "tasks",
    "search",
    "notes",
    "knowledge-management"
  ],
  "skills": "./skills/",
  "hooks": {}
}
.claude-plugin/plugin.json
{
  "name": "org-mcp-server",
  "description": "Org-mode skills for Claude Code: agenda, capture, task updates, and document search",
  "version": "0.1.1",
  "author": {
    "name": "Sebastián Zaffarano",
    "email": "sebas@zaffarano.com.ar"
  },
  "homepage": "https://github.com/szaffarano/org-mcp-server",
  "repository": "https://github.com/szaffarano/org-mcp-server",
  "license": "MIT",
  "keywords": [
    "org-mode",
    "agenda",
    "tasks",
    "search",
    "notes",
    "knowledge-management"
  ],
  "skills": "./skills/"
}