orbit
[!IMPORTANT] Orbitはまだ初期開発段階です。現在のバージョンには独自の認証がないため、公開インターネットに直接公開せず、ローカルネットワークやCloudflare Accessなどの認証プロキシの背後で使用してください。
Orbitが解決しようとする問題
既存の知識管理ツールは、ユーザーにフォルダ、データベース、プロパティ、自動化ルールを先に設計するよう求めることがよくあります。Orbitはその逆に動作します。
メモ、リンク、ToDo、スケジュールを形式なしでInboxに記録します。
原本は人間が読めるMarkdown + YAMLファイルとして残ります。
Todayで今日の実行項目とスケジュールを一緒に確認します。
外部エージェントはMCPを通じて同じファイルにアクセスします。
AI整理は選択機能であり、将来の変更提案をユーザーが承認した後に適用します。
Related MCP server: Knowledge Base MCP Server
現在できること
Markdown/YAML vaultの読み取り
メモ、ToDo、スケジュール、リンクをInboxファイルとしてキャプチャ
今日のToDoの計算と完了処理
Markdownノートの一覧、検索、編集、GFMプレビュー、タグ、アーカイブ
最近のInboxと予定スケジュールの表示
Neutralベースのshadcn/uiとダークグレーのダークモード
MCP
orbit_capture,orbit_today,orbit_searchORBIT_DATA_DIRによるデータ場所の分離モバイル対応のToday画面
まだないもの: ログイン、AI自動分類、変更承認画面、vault全体検索、CalDAV同期、Git自動バックアップ、SSEファイル監視。範囲と順序はロードマップにまとめられています。
クイックスタート
要件: Node.js 22以上、pnpm 10以上
git clone https://github.com/kmelon55/orbit.git
cd orbit
pnpm install
cp .env.example .env
pnpm devデフォルトのvaultはプロジェクトの./dataです。個人データとアプリコードを分離するには、.envで絶対パスを指定してください。
ORBIT_DATA_DIR=/data/orbitファイル構造
/data/orbit/
├── inbox/
├── projects/
├── areas/
├── resources/
├── events/
└── archive/ToDoは別のデータベースやtasks/フォルダに閉じ込められません。Inbox、Project、Area内のMarkdownファイルがtype: taskを持ち、OrbitがこれをTodayに集めます。
---
id: 6c654756-053f-459a-9d73-c8a7c1ff020d
title: 첫 공개 릴리스 준비
type: task
space: project
project: Orbit
status: open
tags:
- launch
created: 2026-08-23T09:00:00+09:00
updated: 2026-08-23T09:00:00+09:00
---
README와 기본 파일 계약을 검토한다.完全なファイル契約はアーキテクチャドキュメントを参照してください。
MCP接続
Orbit MCPサーバーはstdioで実行されます。
ORBIT_DATA_DIR=/absolute/path/to/orbit-data pnpm mcpMCPクライアント設定の例:
{
"mcpServers": {
"orbit": {
"command": "pnpm",
"args": ["--dir", "/absolute/path/to/orbit", "mcp"],
"env": {
"ORBIT_DATA_DIR": "/absolute/path/to/orbit-data"
}
}
}
}Hermesを含むstdio MCPサーバーをサポートするエージェントで同じ方法で接続できます。具体的な設定キーは使用するクライアントのドキュメントを確認してください。
Docker / Dokploy
docker build -t orbit .
docker run --rm -p 3000:3000 \
-e ORBIT_DATA_DIR=/data/orbit \
-v orbit-data:/data/orbit \
orbitDokployではこのリポジトリのDockerfileを使用し、/data/orbitを永続ボリュームとして接続してください。外部公開前には必ず認証プロキシを構成してください。
開発
pnpm test # Biome + TypeScript
pnpm build # production build
pnpm mcp # stdio MCP server貢献方法はCONTRIBUTING.mdを参照してください。
原則
ファイルは製品のエクスポート形式ではなく、Source of Truthです。
SQLiteは検索インデックス、同期状態、キャッシュのような再生成可能なデータにのみ使用します。
AIプロバイダーはBYOKであり、AIなしでも基本的な記録と実行フローが動作する必要があります。
エージェントの破壊的な変更は、デフォルトで提案 → レビュー → 適用の段階を経ます。
ライセンス
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.
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.285210MIT
- 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.13MIT
Related MCP Connectors
Persistent docs and memory for AI agents — read, write, organize & search a shared workspace.
Shared drive for your agents and teammates.
AgentDocs (agentdocs.eu) MCP: read, search, write, comment, share & attach images to Markdown docs.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/kmelon55/orbit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server