orbit
Click on "Deploy 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., "@orbitcapture a task: buy groceries"
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.
Orbit is a lightweight, self-hosted personal knowledge and planning tool.
It is built for people who like the idea of a personal knowledge system but do not want to maintain a complex collection of databases, properties, plugins, and separate apps. Orbit keeps the loop intentionally small: write something down, turn it into a task or event when needed, and file it with PARA when it becomes useful.
Notes, tasks, and calendar events live in the same Markdown vault. The core works without an AI provider, and the next major layer is optional AI that helps you find and organize your own information without silently rewriting it.
What works today
Area | Current behavior |
Capture | Create notes, tasks, and events from Today, Inbox, or the mobile quick-capture flow. Supported browsers can also use speech input. |
Notes | Edit Markdown with background autosave, GFM preview, tags, internal note links, optional Vim mode, and archive/delete actions. |
Tasks | See open and completed tasks, grouped as overdue, today, upcoming, or unscheduled. Complete, edit, file, or drag tasks to today or tomorrow. |
Calendar | Day, week, and month views for tasks and events, including timed and multi-day events. Create, move, and resize scheduled items. |
Today | See today's tasks and events together, alongside active project folders and quick capture. |
PARA | File items into Projects, Areas, Resources, or Archive. Create and manage nested folders without inventing a database schema first. |
Whiteboards | Create, rename, edit, and autosave Excalidraw-compatible whiteboard files. Notes can link to whiteboards. |
Mobile | Responsive navigation, a dedicated capture route, install guidance, and a PWA manifest. Private pages and note data are not cached for offline use. |
Self-hosting | One Docker container, one persistent vault directory, and built-in single-user password authentication. No application database is required. |
MCP | A working local stdio server exposes nine tools against the same vault used by the web app. |
Not implemented yet: built-in AI, AI-assisted organization, a review screen for AI changes, calendar sync, automatic backups, multi-user collaboration, or a remote HTTP MCP endpoint.
Related MCP server: Knowledge Base MCP Server
The workflow
Capture -> Today / Tasks / Calendar -> PARA when useful -> Archive
|
Markdown files
|
Web UI and MCPPARA is a filing policy, not a structure you must maintain before you can write. Inbox holds unprocessed notes and links. Confirming an item as a task or event removes it from Inbox; manage it in Tasks or Calendar. Tasks do not require a project or date. When an item gains a clear context, move it into a Project, Area, or Resource. The organize tray and task location picker share folder search, expandable folders, and recent destinations. Clicking a folder only browses; use the explicit move button after checking the path, or drop an item on its destination. Holding a dragged item over a folder expands it; list edges scroll automatically. Undo item creation, deletion, archiving, moves, completion, type conversion, date changes, and color changes from their notifications or with Cmd+Z / Ctrl+Z outside text editors. The current session retains up to 200 item actions; undo restores only values changed by that action. Text editing uses the editor’s own undo history.
Quick start
Requirements: Node.js 22 or later and pnpm 10 or later.
git clone https://github.com/kmelon55/orbit.git
cd orbit
pnpm install
cp .env.example .env
pnpm devBy default, Orbit stores private data in ./vault, which is excluded from Git and Docker build context. For real use, point Orbit to a directory outside the source repository:
ORBIT_VAULT_DIR=/absolute/path/to/orbit-vault
ORBIT_AUTH_USERNAME=orbit
ORBIT_AUTH_PASSWORD=replace-with-a-long-random-passwordORBIT_DATA_DIR remains available for backward compatibility. Authentication may be omitted during local development. Production fails closed unless both authentication variables are configured. ORBIT_AUTH_SESSION_DAYS can change the default 180-day session lifetime to a value from 1 to 365.
Your data
Markdown and YAML frontmatter are the source of truth:
ORBIT_VAULT_DIR/
├── inbox/
├── projects/
├── areas/
├── resources/
├── events/
├── whiteboards/
└── archive/Tasks are not stored in a separate task database. A Markdown item with type: task can live in Inbox, a Project, or an Area, and Orbit projects it into Today, Tasks, and Calendar. Unknown frontmatter is preserved when Orbit rewrites a note.
See the architecture for the file contract and the vault guide for deployment and backup boundaries.
MCP
Orbit includes a local stdio MCP server. It is a real adapter over the same vault as the web application; it is not a hosted endpoint and does not use the web login session.
ORBIT_VAULT_DIR=/absolute/path/to/orbit-vault pnpm mcpExample client configuration:
{
"mcpServers": {
"orbit": {
"command": "pnpm",
"args": ["--dir", "/absolute/path/to/orbit", "mcp"],
"env": {
"ORBIT_VAULT_DIR": "/absolute/path/to/orbit-vault"
}
}
}
}Available tools:
orbit_captureorbit_todayorbit_inboxorbit_listorbit_readorbit_fileorbit_create_folderorbit_calendarorbit_search
The MCP process has direct read/write access to the configured vault. Run it only from a client and machine you trust.
Docker
docker build -t orbit .
docker run --rm -p 3000:3000 \
-e ORBIT_VAULT_DIR=/vault \
-e ORBIT_AUTH_USERNAME=orbit \
-e ORBIT_AUTH_PASSWORD='replace-with-a-long-random-password' \
-v orbit-vault:/vault \
orbitThe application directory is disposable; /vault is the persistent data boundary. Put TLS in front of the container for any network deployment.
Roadmap
The next milestone is not more workspace machinery. It is a small, reviewable AI layer on top of the working personal system:
Add bring-your-own-key AI provider settings.
Search, summarize, and ask questions across notes, tasks, and events.
Suggest titles, tags, dates, and PARA destinations.
Show every proposed file change before it is applied.
Add dependable file watching, snapshots, and restore flows.
Add calendar import/export and sync only after the local calendar contract is stable.
See the detailed roadmap.
Orbit is deliberately not trying to become a team wiki, a database builder, a plugin marketplace, or an autonomous agent that continuously reorganizes your files.
Development
pnpm test # Biome, TypeScript, and unit tests
pnpm build # production build
pnpm mcp # local stdio MCP serverSee CONTRIBUTING.md before opening a change.
Principles
The files are the product data, not merely an export format.
Notes, tasks, and time belong in one small personal loop.
Capture should require less effort than organizing.
AI is optional and proposes changes for review.
Self-hosting should remain understandable: one app, one vault, no required database.
License
This server cannot be deployed
Maintenance
Related MCP Connectors
Agent-native notes, tasks, dev-docs, vaults, sync & handoffs. MCP + OpenAPI dual surface.
Markdown workspace for AI agents: read, write, organize, and share markdown documents.
Personal context for every AI: search, read, and write back to your private Markdown library of articles, threads, PDFs, notes, and captured ChatGPT/Claude/Gemini/Grok conversations. OAuth 2.1 paste-and-authorize or revocable tiered Agent keys (read_only / edit / full). Every agent edit is versioned and revertible.
Persistent docs and memory for AI agents — read, write, organize & search a shared workspace.
Related MCP Servers
- AlicenseBqualityFmaintenanceProvides an agent-first note-taking system designed from the ground up for AI collaboration. Organizes your notes as a local vault of ordinary markdown files with semantic note types.2841 npm10MIT
- FlicenseAqualityDmaintenanceEnables AI assistants to manage a personal markdown-based knowledge base with natural language interactions. Supports creating, searching, updating, and organizing notes across categories like people, recipes, meetings, and procedures.111-
- AlicenseNot gradedqualityDmaintenanceEnables structured note-taking with markdown support, dynamic tagging system, advanced search capabilities, and markdown export functionality through natural language conversations in Claude Desktop.3GPL 3.0
- AlicenseNot gradedqualityCmaintenanceProvides tools for AI agents to manage long-term memories, daily notes, and TODO lists through a structured markdown file system. It enables context awareness by allowing agents to read, write, and search entries for persistent information storage.6 npmMIT