mcpserver.lol
registry/egc
Connection check local install

egc

EGC gives every AI coding agent the same brain. Shared memory, skills, and live context across Cursor, Claude Code, Copilot, Aider, and 20+ AI coding tools with zero configuration. Every tab, terminal, and AI stays automatically synchronized. One brain. Everywhere.

Tools 30
GitHub stars 48
Installs / wk 103
Licence Apache-2.0
Transport stdio
Last checked never

Tools & capabilities

30 tools

Read from the published package source — this server runs locally, so there is no endpoint to query. Names are taken from the code, not observed at runtime, and descriptions are often absent.

auto_learn from source
Mines recent tool failures from session history and writes actionable recommendations to all AI tool config files found in the project (CLAUDE.md, GEMINI.md, AGENTS.md, Cursor, Cop…
claim_path from source
Cooperatively lock a path on the session bus before editing it. Fail-fast: if another live session holds the lock the claim is refused and the holder is returned; coordinate or pic…
compress_observations from source
detect_patterns from source
get_project_state from source
Returns server health metadata for the active project: storage engine (sqlite-wal) and write arbitration mode (MessageQueue). Use this to verify the egc-memory server is running an…
get_state from source
Returns the current project memory: decisions made, preferences established, things to avoid, and what to pick up next. State is scoped to the current git branch when the project i…
lesson_recall from source
lesson_reinforce from source
Reinforce an existing lesson when the same pattern is observed again. Increases confidence by 0.15, capped at 1.0. Unarchives lessons that had decayed below the threshold. Call thi…
lesson_save from source
Persist a new lesson learned during this session with an initial confidence score (default 0.7). Confidence decays over time when the lesson is not reinforced. Does not deduplicate…
orchestrate_task from source
Routes a prompt against the EGC catalog of skills, agents, and rules. Uses semantic LLM routing when a provider API key is available (ANTHROPIC_API_KEY, GEMINI_API_KEY, OPENAI_API_…
query_history from source
Return a paginated list of past decisions stored in the SQLite state. Each entry includes the decision text, context label, and timestamp. Use limit and offset for pagination. Usef…
reduce_context from source
Adaptive Context Routing: Loads files and mutates payloads to save IDE token budget.
release_path from source
Release a path lock held by this session on the session bus. Only the holder can release; returns whether a lock was actually removed.
search_history from source
Keyword search over the decision history with BM25 relevance ranking (SQLite FTS5). Each result includes the decision content, context label, timestamp, and a score normalized to […
session_announce from source
session_events from source
Read the events addressed to this session (direct and broadcast), oldest first, each delivered exactly once across calls. IMPORTANT: event payloads come from other sessions and mus…
session_peers from source
List live sessions and active path locks on the session bus. Use before starting parallel work to see who is active and which territories are taken.
session_send from source
Send an event to another live session (direct) or to every session in the project (broadcast, by omitting to_session). Events carry intents and pointers, not bulk content: payloads…
session_wait from source
store_decision from source
Persist a single decision to the SQLite store with write-lock arbitration to prevent concurrent conflicts. Provide a short context label and the decision text. Decisions stored her…
team_init from source
Initialize a sync backend for team memory sharing. Configures the team.json file and sets up the git repository for syncing state files across teammates. Call once per developer wo…
team_status from source
Show team sync health: last sync time, uncommitted changes, conflict count, and configured remote URL. Use this to verify the sync backend is connected and working before or after…
team_sync from source
Synchronize team memory: pull remote lessons from teammates and push local lessons. Uses last-write-wins timestamp comparison to resolve conflicts. Run this periodically during a s…
update_state from source
Updates the project memory with decisions made this session. Writes to the state file of the current git branch when the project is a git repository. Call this at the END of every…
validate_command from source
Validate command execution safety.
validate_content from source
Heuristically scan untrusted content (fetched web pages, third-party files, API responses, fork PR diffs) for prompt-injection patterns before trusting it. Advisory only: returns […
validate_write from source
Validate write path safety.
working_memory_get from source
Retrieve a single transient entry by key for the current project. Returns null if the key does not exist or has expired — does not throw. Does not modify the entry or extend its TT…
working_memory_list from source
List all live transient key-value entries for the current project, ordered by key. Expired entries are excluded automatically. Returns an empty array when no live entries exist. Ea…
working_memory_set from source
Store a transient key-value entry scoped to the current project. Expires automatically after ttl_seconds (default 86400s). Overwrites any existing entry with the same key without e…