Alcove
OfficialAlcove is a local-first personal information system that provides tools for managing knowledge, tasks, and external data integrations.
Search & Discovery
Unified search across knowledge, pins, ideas, and tasks with filters (tag, topic, date range, status, confidence)
Get topic overviews, active documents, and list known topics, tags, and domains
Inbox Management
Peek, read, add, archive, defer, or delete inbox items
Promote inbox items into knowledge notes or OKF Sources
Knowledge Base
Add notes, questions, and entities; record sources with platform, title, topic, and summary
Promote sources into knowledge concepts; refresh topics from active sources
Run health checks (gardener, doctor, validate)
Pins
Create, list, get, search, update, archive, and render pinned personal notes; rebuild the pins index
Tasks & Routines
Add, list, complete, and cancel tasks
Create and list recurring task templates (routines); materialize due routines into concrete tasks
Ideas
Add and list low-friction ideas; promote ideas into tasks
Projects
Add, get, find, list, and remove global project aliases; configure scan roots
Prompts
Save, search, get, archive, and list tags for reusable prompts; rebuild the prompt index
Mounts & Connectors
Add, list, and scan external mounted folders
Fetch, check status, and refresh connectors; import Apple Notes exports and GitHub Stars
Export
Export global Alcove data, a specific knowledge base, or all data at once
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., "@Alcovepeek at my inbox"
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.
Alcove
About The Project
Alcove keeps personal knowledge work inspectable, portable, and agent-friendly. It stores user data in local Markdown, YAML, and JSON, while providing governed CLI/MCP write paths and broad AI-led read paths.
The core model:
Read -> search candidates, inspect local evidence, synthesize with context
Write -> route through Alcove CLI/MCP contracts, update indexes, validateData ownership is explicit:
~/.alcovestores global memory, indexes, service state, dashboard snapshots, radars, publishers, automations, and usage rollups.Managed knowledge bases live wherever the user chooses and are registered under
~/.alcove/knowledge-bases/.Mounts and connectors index external sources without taking ownership of the original data.
The dashboard and Apple Notes publisher are derived views, not source-of-truth stores.
Related MCP server: suasor
Features
Managed knowledge bases — inbox capture, manual drafts, archive, OKF notes, taxonomy, validation, and indexed retrieval.
Global personal memory — pins, prompts, tasks, ideas, routines, and local project aliases under Alcove Home.
External knowledge sources — read-only mounts plus Apple Notes, GitHub Stars, and Chrome Bookmarks connectors.
Agent entry modes — Hub workspace, lightweight global MCP, managed-KB workspace, business workspace OKF, and local service runtime.
Configurable radars and monitors — scheduled information reports, watched feeds/pages, blog discovery, optional capture, optional AI summary, and Telegram/Feishu/tmux-claude-bot notification sinks.
Local dashboard — browser-facing workbench generated from local data.
External readable mirrors — Apple Notes publishing for selected personal memory views.
Health and repair — cross-module data checks, OKF validation, safe index rebuilds, deep local maintenance, and agent smoke/eval hooks.
Built With
Language / runtime — Python 3.12+
Packaging / environment — uv
CLI / MCP — argparse, FastMCP
Data formats — Markdown + YAML frontmatter, JSON, YAML
Quality gates — Ruff, mypy, pytest, pytest-cov, pip-audit, gitleaks
Architecture
Codex / Claude Code / CLI / MCP / Dashboard
│
▼
Alcove Application
│
┌────────────────┼────────────────┐
│ │ │
Managed KBs Global Memory External Indexes
inbox pins mounts
archive prompts connectors
OKF notes tasks fetch refs
validation projects OKF mirrors
│ │ │
└────────────────┼────────────────┘
▼
Global OKF Catalog / Search Rows
│
Dashboard / Publishers / ServiceKey design rules:
Reads are broad. Agents can search, inspect OKF files, follow source refs, fetch connector details, and read mounted evidence.
Writes are narrow. Durable mutations should go through Alcove CLI/MCP so frontmatter, provenance, indexes, activity logs, and health checks remain consistent.
Derived files are disposable. Rebuild dashboard snapshots, usage rollups, JSON indexes, and OKF catalogs from source-of-truth data.
See docs/architecture.md and docs/read-write-model.md for the full model.
Getting Started
Installation
uv tool install git+https://github.com/OctopusGarage/alcove.git
alcove --versionFor local development:
git clone https://github.com/OctopusGarage/alcove.git
cd alcove
uv sync
uv run alcove --version
uv tool install --force -e .First Setup
alcove home init
alcove kb add research_notes /path/to/research_notes
alcove hub init ~/AlcoveHub --default-kb research_notes
alcove hub install ~/AlcoveHub --default-kb research_notes
alcove workspace init family --default-kb research_notes
alcove workspace okf init family --json
alcove global install --default-kb research_notes
alcove kb install research_notesEntry profiles:
Mode | Purpose |
Hub workspace | Main AI workspace for broad personal knowledge work. |
Business workspace | Lightweight family/work/travel-style agent scene under the Hub concept. |
Global MCP | Lightweight search/save access from unrelated projects plus default background Apple Notes publishing. |
Managed KB workspace | Focused capture, inbox review, and OKF note workflows. |
Local service | launchd dashboard server and deterministic scheduler ticks. |
Development link mode keeps Alcove-owned skills and commands symlinked to the repository templates:
alcove hub install ~/AlcoveHub --default-kb research_notes --link
alcove workspace install family --link
alcove kb install research_notes --linkCore Workflows
Managed KB
alcove inbox --kb research_notes peek
alcove inbox --kb research_notes manual-add "Manual Thought" \
--content "Copied note text" \
--source "chat://manual"
alcove knowledge --kb research_notes note-source \
--platform web \
--title "Example" \
--topic agent-engineering/agent-harness \
--summary "Summary"
alcove search "Example" --kb research_notesGlobal Memory
alcove pin add "Useful Pattern" --description "Short reusable note" --tag reference
alcove prompt propose "Code Review Lens" --content "Review the diff for regressions..." --tag review
alcove prompt save --proposal-id <proposal-id>
alcove prompt recommend "review a dashboard regression before shipping"
alcove prompt compose "review a dashboard regression before shipping"
alcove prompt audit --json
alcove task add "Wire MCP search" --priority high --tag mcp
alcove project add alcove /path/to/alcove --note "Personal information core"External Indexes
alcove mount add /path/to/repos --name repos --type local-folder --profile docs --tag repos
alcove mount scan repos --dry-run --json
alcove mount scan repos --json
alcove connector github-stars import-url "https://github.com/octocat?tab=stars" --json
alcove connector chrome-bookmarks import-local --tag bookmarks --json
alcove connector apple-notes import-local --tag apple-notes --json
alcove connector status --jsonMount profiles keep local repository indexes focused. Use docs for README and
documentation-heavy repositories, site for blog/site content, notes for
personal Markdown folders, and capture-bundles for Clipsmith-style captured
article folders. Add --include and --exclude when a specific mount needs
custom rules.
Radars, Watchers, and Blogs
alcove radar preset list --json
alcove radar init tech-news --from-preset tech-news --json
alcove radar run tech-news --force --ai --notify --json
alcove watch add "Example Blog" https://example.com/feed.xml --kind rss --kb research_notes
alcove blog check --stale --jsonDashboard and Publishers
alcove dashboard --home ~/.alcove build
alcove serve --dashboard --home ~/.alcove --port 8765
alcove global install --default-kb research_notes
alcove publish init apple-notes --root-folder "iCloud/Alcove" --json
alcove publish run apple-notes --jsonalcove global install initializes the default Apple Notes publisher and
installs the scheduler LaunchAgent so due publisher runs happen through
background alcove service tick. Alcove writes to mirrored sources mark the
publisher dirty, so the next scheduler tick can re-export changed Notes before
the normal 24-hour TTL. Use alcove publish run apple-notes when an immediate
manual sync is needed.
Operations
Run a normal health check:
alcove health --home ~/.alcove --json
alcove health --home ~/.alcove --kb research_notes --fix --jsonRun a local full-maintenance pass:
alcove health --home ~/.alcove --fix --deep --json--deep rescans mounts, rebuilds usage rollups, rebuilds the dashboard snapshot,
and rebuilds the global OKF catalog. Connector refresh remains explicit:
alcove health --home ~/.alcove --fix --deep --refresh-stale-connectors --jsonServe deterministic background work through launchd:
alcove service install --dashboard --scheduler --load
alcove service status
alcove service tick --jsonBack up managed KB roots and ~/.alcove outside the Alcove runtime. Recommended
tools:
scheduled Git sync: https://github.com/OctopusGarage/git-auto-sync
optional Git encryption: https://github.com/AGWA/git-crypt
Documentation
Development
uv sync
uv run ruff check .
uv run ruff format --check .
uv run mypy
uv run pytest
scripts/verify/check.shCoverage is generated as coverage.xml by pytest and uploaded in CI from the
Ubuntu matrix job. See docs/coverage.md for Codecov setup.
License
Distributed under the MIT License. See LICENSE.
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
- Alicense-qualityBmaintenanceA local-first MCP server for personal memory management, enabling AI agents to store, search, and retrieve developer insights with offline semantic search and auto-categorization.Last updated353MIT
- Alicense-qualityBmaintenanceA local-first AI secretary that gathers your work context into private memory and enables AI agents to search and summarize it over MCP.Last updated86MIT
- Flicense-qualityBmaintenanceA database-first personal knowledge management system powered by a local MCP server, providing 29 tools to manage and search structured knowledge (meetings, emails, people, accounts, projects, todos, etc.) via a single SQLite file.Last updated
- Alicense-qualityCmaintenanceA local-first compiled knowledge graph MCP server that provides structured memory for AI agents with full-text search, vector embeddings, and timeline tracking.Last updated7617MIT
Related MCP Connectors
Private-by-default, local-first memory/context/task orchestrator for MCP apps and agents.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
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/OctopusGarage/alcove'
If you have feedback or need assistance with the MCP directory API, please join our Discord server