pollux-mcp
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., "@pollux-mcpsearch project memory for the authentication decision"
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.
Pollux
A complete, local-first project memory for AI coding agents: self-owned engine, governance, diagnostics, and per-file dossiers in one package.
Status: early alpha. The repository is not published to PyPI yet. The name: Pollux is the immortal twin of Castor in Gemini. Here
events.jsonlis Castor — the mortal, append-only record that eventually archives away — while the distilledsummary.mdis Pollux, the memory that stays alive; one cannot exist without the other. Relationship to projectmem: the on-disk format (.projectmem/layout, six typed events, derivedsummary.md) is compatible with projectmem 0.2.x so existing memories carry over without migration, but this project no longer depends on or wraps that package — the engine is self-owned, fixing its architectural limits (unindexed precheck, full-rewrite-per-event, cwd-only capture, English-only classification, no archival, no locking).
Why this exists
Memory tools can create files and expose MCP commands, but a reliable engineering workflow needs more than storage:
A clear boundary between append-only history and directly maintained current state.
Conservative defaults instead of silently enabling hooks or global memory inheritance.
Repeatable Agent instructions across OpenCode, ZCode, Claude, Cursor, and Codex.
A doctor command that can prove the configured memory root, privacy profile, hook behavior, and accidental secret exposure.
A real project-family mode: memory anchored at a parent of several repos, with walk-up discovery, cross-process locking, and parent-anchored auto-capture.
Performance that holds as the memory grows: indexed precheck, incremental regeneration, and reversible archival.
Features
pollux init: idempotent memory bootstrap with conservative defaults.pollux doctor: structured configuration, privacy, hook, and secret audit.pollux render: client-specific MCP configuration for six AI clients.Memory commands with upstream-compatible semantics:
log,attempt,fix,decision,note,show,search,precheck,context,regenerate.pollux archive: reversible lifecycle for closed, old issues and (opt-in) old decisions, dry-run first.pollux backup: verified whole-memory snapshots — the irreplaceable event log lives outside git, so it needs its own safety net.Budgeted MCP reads:
get_summaryreturns a bounded digest when the full file would exceed the client's size budget (older entries used to be silently truncated away);search_eventsranks by relevance.pollux capture: bilingual (English + zh-CN) commit/merge classification, anchored by walk-up discovery, deduplicated by commit hash.pollux hooks: managed, runtime-pinned, advisory git hooks.pollux dossier: repository-agnostic per-file engineering dossiers (responsibility cards + memory + Git evidence).pollux mcp: the fifteen-tool MCP server (same tool names as the historical surface, so existing agent workflows keep working).Team, private, and project-family profiles; atomic marked-block updates that preserve existing
AGENTS.mdandCLAUDE.mdcontent.UTF-8 output for non-interactive Windows automation without overriding explicit user settings.
Runtime dependencies: only
mcp>=1.2,<2; the CLI itself is standard library.
Installation
Until the first public release, install from a local checkout:
python -m pip install -e .The package exposes the pollux (CLI) and pollux-mcp (server) commands.
Quick start
Team profile
The distilled map, plan, summary, issues, and instructions may be committed. Raw events and runtime files are ignored.
pollux init /path/to/repo --profile team --client opencode
pollux doctor /path/to/repoPrivate profile
The complete .projectmem/ directory is ignored.
pollux init /path/to/repo --profile private --client claudeProject-family profile
Use only for tightly related repositories that intentionally share one project map and event history. The memory root must be an ancestor of the project.
pollux init /workspace/repo-a \
--profile family \
--memory-root /workspace \
--client codexHooks in family mode are supported: pollux's own hooks resolve the memory
by walking up from the Git root, so --enable-hooks works with a parent
memory root.
Where the memory lives
pollux init writes only the memory root and the two rule files — nothing
else in your repository. In the team and private profiles the memory root is
<repo>/.projectmem/; in the family profile it is the .projectmem/ of the
shared parent directory, discovered by walking up from each repository.
<repo>/ # team/private: the repository; family: the shared parent
├── AGENTS.md # governance rules, marked block — committed
├── CLAUDE.md # the same rules for Claude — committed
└── .projectmem/ # the memory root
├── events.jsonl # append-only raw history — never committed
├── summary.md # derived digest — committed in team
├── issues/ # derived per-issue history — committed in team
├── PROJECT_MAP.md # current structure, hand-maintained
├── plan.md # current intent, hand-maintained
├── config.toml # memory configuration
├── AI_INSTRUCTIONS.md # agent workflow instructions
├── archive/ # reversible archive (pollux archive)
└── cache/, write.lock # runtime state — never committedEvery profile ignores the raw event log and runtime state; the private profile
ignores the whole .projectmem/ directory; the team profile commits the
distilled files (summary, issues, map, plan, configuration, instructions).
Git hooks are only installed under <repo>/.git/hooks/ and only with
--enable-hooks.
Conservative defaults
pollux init keeps automation opt-in: Git hooks require --enable-hooks
(and pollux hooks install). Global-memory auto-promotion stays off; the
global gotcha store is read-only by default.
This sequence is intentional: establish an accurate project map and verify active MCP writes before adding automation.
Commands
pollux init [PATH] [--profile team|private|family] [--enable-hooks]
pollux doctor [PATH] [--profile auto|team|private|family] [--json]
pollux render opencode|zcode|claude|cursor|codex|dsh [PATH]
pollux log|attempt|fix|decision|note <text> [--at loc] [--root DIR]
pollux show|regenerate [--root DIR]
pollux search <query> [--regex] [--failed-only] [--all]
pollux precheck [files...] [--level info|warn|block] [--json]
pollux context [--tokens N] [--focus AREA]
pollux archive --before DATE [--decisions-before DATE] [--dry-run] [--status] [--restore]
pollux backup [--to DIR] [--verify ZIP]
pollux capture commit|merge [--repo-root DIR]
pollux hooks install|uninstall [--repo DIR]
pollux dossier <path> [--validate] [--emit-schema]
pollux mcpUse pollux <command> --help for all options.
What doctor checks
The nearest initialized memory root and expected memory files.
The effective team/private/family profile.
Agent workflow markers and source-of-truth rules.
Runtime and raw-event
.gitignorepolicy.Whether raw
events.jsonlis tracked by Git.Both project and shared-memory roots when using the family profile.
Legacy projectmem hook blocks (migration hint) and pollux hook runtime drift.
Windows hook paths and unresolved runtime pins.
OpenCode MCP root mismatch when
opencode.jsonexists.Common credential patterns without printing the matched value.
doctor --json provides machine-readable output suitable for CI.
Source-of-truth policy
Data | Owner | Direct editing |
| pollux engine append operations | No |
| pollux engine regeneration | No |
| pollux engine regeneration | No |
|
| No |
| Contributors and Agents | Yes |
| Contributors and Agents | Yes |
Non-goals for v0.2
Uploading memory to a hosted service.
Automatically modifying global AI-client configuration.
Treating heuristic Git backfill as verified design history.
Guaranteeing that a regex secret scan replaces dedicated secret-scanning tools.
Development
python -m unittest discover -s tests -v
python -m ruff check .
python -m build
python -m twine check --strict dist/*See CONTRIBUTING.md, architecture, and the threat model.
License
Pollux is released under the MIT License. Dependency attribution is listed in THIRD_PARTY_NOTICES.md.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Person-owned, portable AI memory as a remote MCP server, readable and writable by any MCP client.
Shared, governed long-term memory for AI agents across tools and sessions via MCP and REST.
Private-by-default, local-first memory/context/task orchestrator for MCP apps and agents.
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/Wsyjq/pollux'
If you have feedback or need assistance with the MCP directory API, please join our Discord server