The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Ellmos ControlCenter listing page.
Part of the ellmos-ai family.
[!NOTE] LLM / AI Agent Integration: This repository provides an
llms.txtindex file for context optimization, RAG discovery, and agent navigation.
Quick Start • System Architecture • Control & Gateway Flow • Tools (34) • Gateway • Security Policy • llms.txt Context • Ecosystem Matrix
An advanced Model Context Protocol (MCP) administration server and policy-gated gateway for local MCP stacks. ControlCenter discovers local MCP servers, reads MCP profile files, groups servers into capability bundles, recommends profiles for a task, builds catalogs, probes real MCP tool lists from local repositories or profiles, assigns tools to capability bundles, provides host-level register mirrors (locks, permissions, resources, governance), and provides an optional local dashboard.
Architecture & Dual Role — Control Plane + Policy-Gated Gateway: ControlCenter combines two complementary operational surfaces:
- Control Plane (Administration & Configuration): Inventories local servers, resolves profiles, manages capability bundles, mirrors system governance/locks, and generates configurations (
controlcenter_switch_profile,controlcenter_build_catalog).- Policy-Gated Gateway (On-Demand Tool Invocation): Via
controlcenter_invokeandcontrolcenter_list_available_tools, agents can list and invoke tools on backend MCP servers that the host agent has not loaded into its active context — strictly bounded by pattern-based policy rules (data/gateway-policy.json), argument auditing, and secret scrubbing.It operates 100% locally with Zero-Egress and enforces fail-closed checks across locks, permissions, and gateway policies.
Provider note: ControlCenter works with any MCP-capable client (Claude Code, Codex, Gemini, or any stdio-based MCP host). The profile management tools default to Claude Code's profile directory (
~/.claude/profiles) but accept any directory viaELLMOS_PROFILE_ROOT. The skill and plugin inventory tools are scoped to Claude Code conventions by default; see the environment variables below for override options.
ControlCenter provides discovery, profile visibility, dashboard workflows, capability bundles, profile-aware tool-list probes, tool-bundle assignments, internationalization, policy audits, host register mirrors (locks, permissions, resources, plans), and the policy-gated gateway (controlcenter_invoke). Hardened for multi-OS deployment with a 48-hour security response SLA.
0.7.0ellmos-ai/ellmos-controlcenter-mcpellmos-controlcenter-mcpnpm run test and npm run build| Tool | Purpose |
|---|---|
controlcenter_status | Show stack, profile, and detected-server status |
controlcenter_actual_self_receipt | Run a native self list_tools probe and emit a short-lived signed runtime receipt when explicitly configured |
controlcenter_get_language | Show the current ControlCenter output language |
controlcenter_set_language | Set the ControlCenter output language for this running server instance |
controlcenter_list_local_servers | Scan local MCP repositories below the MCP root and enrich them with kind and state ownership from mcps.catalog.v1.json |
controlcenter_describe_mcp | Describe one MCP server from mcps.catalog.v1.json: kind, namespace, state ownership, wrapping, and composition |
controlcenter_list_stacks | Read registered stacks from stacks.catalog.json and validate their ellmos.stack.v2 manifests |
controlcenter_describe_stack | Describe typed components, roles, policies, and validation warnings for one registered stack |
controlcenter_context_pack | Build a bounded, manifest-only handoff for a registered stack at short, execution, or full detail |
controlcenter_list_tools | Start local or profile-defined MCP servers and read their real list_tools output |
controlcenter_find_capability | Rank typed native-binding claims from a hash-consistent System Explorer resolution without selecting or executing one |
controlcenter_tool_overview | Show resolution-bound component claims while keeping declared and runtime-state axes separate |
controlcenter_assign_tool_bundles | Assign probed MCP tools to capability bundles |
controlcenter_list_bundles | Group local servers by capability bundle |
controlcenter_suggest_bundles | Recommend bundles for a task |
controlcenter_list_profiles | List MCP profiles from the profile root (defaults to ~/.claude/profiles; override with ELLMOS_PROFILE_ROOT) |
controlcenter_suggest_profile | Recommend a profile for a task |
controlcenter_resolve_profile | Resolve a profile including extends chains |
controlcenter_switch_profile | Prepare a generated --mcp-config file and configurable launch command |
controlcenter_audit_profile | Run initial policy checks against a profile |
controlcenter_build_catalog | Build a JSON catalog of local MCP servers, optionally including tool probes |
controlcenter_list_skills | Inventory deployed skills (~/.claude/skills by default; Claude Code convention, override with ELLMOS_SKILLS_ROOT) and the source skills library |
controlcenter_find_skill | Match keywords for a task or intent against the scanned skill catalogue and return ranked candidates — see Querying skill search |
controlcenter_resolve_semantic_route | Validate an LLM/user-selected role, expert and persona against a provider-neutral map and verify endpoints against the live skill inventory |
controlcenter_list_plugins | Inventory installed plugins (~/.claude/plugins by default; Claude Code convention, override with ELLMOS_PLUGINS_ROOT) and local ellmos modules |
controlcenter_list_locks | List active LOCK*.txt project locks across the configured roots — see Host registers |
controlcenter_check_lock | Check whether one path is locked, including locks inherited from parent directories |
controlcenter_evaluate_permission | Report what the nearest LOCK.permissions register allows an agent to do at a path |
controlcenter_list_decisions | List pending user decisions by identifier, date, title and status |
controlcenter_list_governance | Federate allowlisted decision, policy, strategic-plan and BYUM metadata read-only; report each source separately and never adopt or execute a candidate |
controlcenter_list_resources | List rows from the host's resource inventory (systems and/or installed software) — read-only mirror; the register's authority sits with the ControlRoom programme, not here |
controlcenter_describe_resource | Full row detail for one resource by its inventory id, from the same read-only mirror |
controlcenter_list_available_tools | List the tools of MCP servers this host has not loaded, without loading them — see Gateway |
controlcenter_invoke | Run one tool on a server this host has not loaded and return its result, policy-gated and audited |
A session that loads eleven MCP servers pays for all of their tools at once. The gateway lets the loaded profile stay small — for example FileCommander, ControlCenter, open-compute — while the remaining servers stay reachable on demand.
Scope. Only servers declared by the configured MCP root (ELLMOS_MCP_ROOT) or by the profile
named in profile can be addressed. That set is the gateway's primary boundary — there is no way
to point it at an arbitrary command.
Lifecycle. The connection is opened for the call and closed afterwards. No backend process is kept running between invocations. The cost is roughly 200–500 ms per call on a cold stdio server; the benefit is that ControlCenter never leaves child processes behind.
Failure modes are kept apart. Four different things can go wrong, and they mean different things:
| Outcome | Meaning |
|---|---|
unknown-server | The name is not in the addressable set. The known names are returned. |
unreachable | The server exists but could not be asked. Not "returned nothing". |
unknown-tool | The server has no such tool. Its available tool names are returned, so a wrong guess self-corrects in one step. |
target-error | The call arrived and the target reported a tool error. This is a backend result, not a ControlCenter failure. |
A listing over several servers states at the top when some of them could not be asked, so a partial result is never mistaken for a complete one.
Policy. data/gateway-policy.json (override with ELLMOS_GATEWAY_POLICY):
mode: "open" allows every tool of an addressable server; mode: "allowlist" requires a matching
allow rule. deny always wins, and * is a wildcard in both fields. A malformed or
schema-foreign policy file refuses every invocation rather than falling back to allow-all.
Audit. Every invocation, including refused ones, is appended as one JSON line to
~/.ellmos/controlcenter/gateway-audit.jsonl (ELLMOS_GATEWAY_AUDIT_LOG; set it to off to
disable). The entry holds argument names and count — never argument values — plus the masked
connection command or URL, outcome, duration and content-block count, never result content. The
tool output reports whether the write succeeded, so a failed audit is visible; set
ELLMOS_GATEWAY_AUDIT_REQUIRED=1 to turn a failed write into a refused call.
Hardening. Forwarded payloads are foreign data, so the invoke path is bounded on every axis:
| Control | Behaviour |
|---|---|
| Recursive redaction | Narrow credential shapes (sk-, ghp_, AKIA, JWT, …) are replaced everywhere, at every nesting level. Secret-named keys (auth, token, apiKey, …) are wiped whole only in structuredContent — never in content blocks, which carry the payload the caller asked to read. The result reports how many values changed. Disable with redactResults: false — a deliberate weakening. |
| Request budget | Oversized arguments are refused, never shortened; a truncated argument set would silently change the request. ELLMOS_GATEWAY_MAX_REQUEST_BYTES, default 256 KiB. |
| Response budget | Oversized answers are truncated and flagged, so the part that arrived stays usable. ELLMOS_GATEWAY_MAX_RESPONSE_BYTES, default 1 MiB. |
| Nesting and blocks | ELLMOS_GATEWAY_MAX_DEPTH (32) and ELLMOS_GATEWAY_MAX_CONTENT_BLOCKS (200). Cycle-safe, so a self-referential payload cuts off instead of looping. |
| Concurrency | ELLMOS_GATEWAY_MAX_CONCURRENT (4). Without it a parallel batch would spawn one backend process each. A call that gets no slot is refused, not queued forever. |
| Transport | HTTPS only; plain HTTP allowed on loopback alone. Redirects refused. Narrow further with allowedRemoteHosts (supports *. subdomains). |
| Untrusted marking | Forwarded content is fenced with a banner marking it as data, not instructions — the gateway pipes third-party output into an agent's context. |
Not included. Connection pooling, streaming and progress pass-through, sampling, elicitation, backend resources and prompts, and risk-class policies derived from tool annotations. Opaque session-bound capabilities have no counterpart yet, because no session is held and no capability handle is issued. Only the MCP adapter exists; module, stack and folder adapters remain open.
ControlCenter reads three hand-curated catalogs instead of hard-coding individual paths. Each root is configurable, and each catalog is optional.
| Catalog | Schema | Root (env override) | Used by |
|---|---|---|---|
modules.catalog.json | ellmos.modules-catalog.v1 | .AI/.MODULES (ELLMOS_MODULES_ROOT) | controlcenter_list_plugins |
stacks.catalog.json | ellmos.stacks.catalog.v1 | .AI/.STACKS (ELLMOS_STACKS_ROOT) | controlcenter_list_stacks, controlcenter_describe_stack, controlcenter_context_pack |
mcps.catalog.v1.json | ellmos.mcps.v1 | .AI/.MCP (ELLMOS_MCP_CATALOG) | controlcenter_list_local_servers, controlcenter_describe_mcp, controlcenter_status |
The MCP catalog contributes what a directory scan cannot see: mcp_kind (tool, adapter, stack, control-plane), whether a server keeps persistent state, and which component owns that state per namespace. The directory scan stays the source for what is actually installed, so both directions are reported: a scanned server without a catalog entry keeps empty catalog fields, and a catalog entry without a directory is listed separately rather than dropped. Entries are joined on the catalog id first and on the npm package name second, because a server may publish under a different name than its directory.
A missing, unreadable, or foreign-schema catalog never fails a tool call. The enriched fields degrade to empty and the output names the reason, so an absent catalog is distinguishable from a server that genuinely holds no state. An unreadable MCP root is likewise reported as unreadable instead of as an empty result.
The seven tools above answer a different question from the rest of this server: not "what can I configure?" but "what applies on this machine right now?" They read six host-local registers — project locks, an agent-neutral permission register, a pending decision list, a policy registry, the strategic-plan index, and a resource inventory of systems and installed software.
controlcenter_list_governance composes the generated decision index, the existing
ellmos.plans-register/1 strategic-plan index, and an explicitly configured
ellmos.policy-registry.v1 file. The policy registry is validated only through the canonical
PolicyRegistry.load() API. Every source reports available, unconfigured, unreadable, or
invalid; partial data never claims completeness, and a valid registry with zero BYUM candidates
reports an honest zero. Plan paths, notes and host variants remain in _PLANS; BYUM rows remain
pending advisory pointers without adoption or execution authority.
controlcenter_list_resources and controlcenter_describe_resource are a read-only mirror
of .SYNC/_inventory/inventory.db. Register authority sits with the ControlRoom programme's
own resources.inventory resolver role, not with this server — this mirror can go stale
between syncs and never claims otherwise.
They are read-only. No lock is created, renewed or released; no decision is answered.
LOCK.user.* locks in particular are removed by the user alone, and nothing here can touch
them.
They fail closed. If a register is unconfigured, a path is unreadable, the interpreter is
missing or a check errors, the verdict is unknown and safe to proceed is no — never a
reassuring "clear". A lock checker that guesses in the reassuring direction is more dangerous
than none at all.
Inheritance is respected. A LOCK.txt in a parent directory locks everything beneath it,
so controlcenter_check_lock walks the whole ancestor chain and reports the effective lock
with its distance, not just a file sitting in the same folder.
Lock semantics are not reimplemented here. A small bridge script delegates every rule —
expiry, protected lock types, scope parsing, permission precedence deny > ask > allow > default
— to the host's canonical Python modules. A second implementation would drift from the spec on
the next change to it. This is the one place where the server calls Python; if no interpreter is
available the tools fail closed like any other unmet precondition.
These tools are inert until configured, because these registers do not exist on a machine that has not set them up:
| Variable | Purpose |
|---|---|
ELLMOS_LOCK_SCRIPTS | Directory holding the canonical lock_utils.py, permissions.py and lock_scan.py. Required by the three lock and permission tools. |
ELLMOS_LOCK_ROOTS | Optional path to lock_roots.json. Defaults to the file beside the lock scripts. |
ELLMOS_DECISIONS_ROOT | Directory holding the decision chain and its generated index. Required by controlcenter_list_decisions. |
ELLMOS_INVENTORY_DB | Path to the resource inventory SQLite file (.SYNC/_inventory/inventory.db). Required by controlcenter_list_resources and controlcenter_describe_resource. |
ELLMOS_POLICY_REGISTRY_PATH | Explicit path to an ellmos.policy-registry.v1 registry. Required for the policy side of controlcenter_list_governance. |
ELLMOS_POLICY_REGISTRY_SRC | Optional source root containing the canonical policy_registry Python package. |
ELLMOS_PLANS_REGISTER | Explicit path to _control-center/_PLANS/plans-register.json in schema ellmos.plans-register/1. Required for the plan side of controlcenter_list_governance. |
ELLMOS_PYTHON | Interpreter to run the bridge with. Defaults to python, falling back to python3. |
controlcenter_list_decisions returns identifiers, dates, titles, status and scope — not the
question texts, options or recommendations, which can describe personal circumstances. Read
those in the register itself.
controlcenter_list_governance uses fixed field allowlists. It never returns source URIs or plan
paths, host variants, plan notes, questions, options, recommendations, rationale, prompts, full
text, reasons, secure/avatar content, action payloads, execution payloads, or receipts, and it
never dereferences a registry pointer.
controlcenter_list_locks walks every configured root. Over cloud-synced storage that takes
minutes, so the scan runs under a wall-clock budget, checked between roots. If the budget runs
out, the result is marked incomplete and names the roots that were never reached — an
incomplete scan proves nothing about them. For a single path, controlcenter_check_lock is the
right tool and answers in milliseconds.
controlcenter_find_skill matches purely lexically over name, aliases, tags, category and
description. It does not yet do semantic/embedding search, so query with keywords and
technical terms, not with whole sentences. A natural-language sentence drags in filler words,
and those can outrank the correct hit.
controlcenter_find_capability and controlcenter_tool_overview consume an explicit
system-explorer.resolution.v1 file. They fail closed unless its content hash is self-consistent and
its component-registry source-verification claim is present. That claim is not external provenance:
until System Explorer emits a separately trusted receipt, output fields explicitly report
provenance_verified: false and identity_verified: false. Only stable, type-consistent native-binding
claims are returned. Results use
the method controlcenter-lexical-candidate and score domain controlcenter.lexical.v1; they never
select a provider, prove identity or availability, or authorize execution. Semantic routing remains a separate
advisory producer.
| Query | Top result | |
|---|---|---|
| ❌ | My program crashes when saving and I don't know why | mcp-config-sync (score 6 — matched on when, know, why) |
| ✅ | debug bug test failure | bugfix-protocol (score 5 — matched on bug, debug) |
Two consequences:
Until semantic search is supported (tracked in TODO.md), keyword queries are the intended usage —
not a workaround.
controlcenter_resolve_semantic_route keeps semantic role selection with the caller LLM or the
user, validates the selected coordinator/expert/persona edges against a
semantic-persona-routing.map.v1 file, and checks explicit skill endpoints against the current
skill inventory. The default map is ~/.ellmos/controlcenter/routing/semantic-persona-routing-map.v1.json
and can be overridden with ELLMOS_SEMANTIC_ROUTING_MAP or a tool input.
Lexical candidates remain separately labelled. A routing-map candidate can become a verified endpoint only after the caller explicitly confirms it as a second semantic/source signal and the skill is uniquely present in the deployed live inventory. Nested map records, stable IDs, enums, references, and uniqueness are validated fail-closed. The route grants no tool or execution authority.
After building the project, start the local dashboard with:
Default address:
The dashboard can currently show local servers and profiles, switch its UI language, enable or disable servers per profile, summarize profile audits, scan MCP tools for the selected profile or local repositories, display tool-to-bundle assignments, and write a generated --mcp-config file. Write actions ask for confirmation and create a backup before overwriting an existing file.
ControlCenter ships MCP registry metadata for crawlers and catalog tools:
server.json uses the official MCP server metadata shape with the package name, repository, and stdio transport.llms.txt gives LLM crawlers a compact project summary, canonical links, and tool overview.package.json includes both files in the npm package so registry indexers can read the same metadata from GitHub or npm.The public npm package is the canonical install target. The GitHub repository remains the canonical source for development, issues, and release notes.
Use the full name ellmos ControlCenter MCP or the package name ellmos-controlcenter-mcp when linking or searching. The short phrase "control center" is too broad, and "ellmos" can collide with Elmo/ELMO motion-control, HR, and voice-generator results.
Best-fit search phrases:
ellmos ControlCenter MCPellmos-controlcenter-mcpMCP control plane for local serversMCP profile management dashboardlocal MCP stack discovery TypeScriptClaude Codex Gemini MCP profile switcherMCP policy audit profile managementStart the MCP server:
Start the dashboard:
Run the server from source:
Run the dashboard from source:
ControlCenter works with any MCP-capable client. The JSON snippet below uses the standard mcpServers format supported by Claude Code, Claude Desktop, Codex, Cursor, and other MCP hosts.
If installed globally from npm:
If installed from source:
Optional environment variables:
ELLMOS_MCP_ROOT overrides the default MCP repository rootELLMOS_STACKS_ROOT overrides the stack catalog root (default: local .AI/.STACKS)ELLMOS_MCP_CATALOG overrides the MCP catalog file (default: mcps.catalog.v1.json inside the MCP root)ELLMOS_MODULES_ROOT overrides the module catalog root (default: local .AI/.MODULES)ELLMOS_PROFILE_ROOT overrides the profile directory (default: ~/.claude/profiles)ELLMOS_SKILLS_ROOT overrides the deployed skills directory (default: ~/.claude/skills)ELLMOS_PLUGINS_ROOT overrides the plugins directory (default: ~/.claude/plugins)ELLMOS_BUNDLE_CONFIG overrides the capability bundle definition fileELLMOS_POLICY_CONFIG overrides the profile audit policy rule fileELLMOS_LAUNCH_TEMPLATE overrides the generated profile-switch launch command. Use {config} as placeholder for the generated MCP config path.ELLMOS_CONTROLCENTER_ACTUAL_SELF_CONFIG points to the host-local, fail-closed actual-self producer configuration. If it is absent, controlcenter_actual_self_receipt emits no receipt.CONTROLCENTER_LANGUAGE or ELLMOS_CONTROLCENTER_LANGUAGE sets the initial output languagecontrolcenter_actual_self_receipt is an optional evidence producer for System Explorer. It starts a fixed child instance of this package, reads only its MCP list_tools surface, hashes a redacted tool summary, and returns an Ed25519-signed ellmos.actual-self-component-receipt.v1. It never executes a reported tool and never returns the signing key, configuration path, environment, raw descriptions, or local paths.
The host-local JSON configuration must use ellmos.controlcenter.actual-self-producer.v1 and contain exactly enabled, scope, registry_binding, signer_id, private_key_path, private_key_sha256, and ttl_seconds in addition to schema. TTL is limited to 300 seconds. The configured host must match the native hostname and the private key must match its lowercase SHA-256 pin. Trust-store provisioning and route activation are deliberately external operations; producing a receipt does not make it trusted.
By default, the MCP repository root is derived from the OneDrive/ONEDRIVE environment variable and falls back to ~/OneDrive/.TOPICS/.AI/.MCP.
ControlCenter supports the language codes de, en, es, zh, ja, and ru. All six languages now have maintained text sets for MCP tool output, dashboard labels, policy hints, profile recommendations, and tool descriptions.
Use controlcenter_get_language to inspect the current language and controlcenter_set_language to switch MCP tool output at runtime. The dashboard also includes a language selector and accepts /?lang=en style links. Bundle titles and descriptions loaded from custom JSON config files are shown as authored.
controlcenter_switch_profile does not change a running session. It creates a resolved MCP configuration and returns a launch command. The default remains compatible with Claude Code:
With write: false, the switch runs as a preview. With write: true, ControlCenter writes the generated file. The generated mcpServers JSON is readable by any MCP-capable client. Use the launchTemplate input or ELLMOS_LAUNCH_TEMPLATE to return a Codex, Gemini, or custom launcher command, for example codex mcp run --config {config}.
A planned optional restart/reconnect workflow will keep this boundary: after a written profile change, ControlCenter should surface a restart hint and copyable launch command for Claude Code, while automatic reconnection stays behind an explicit, client-specific adapter and must fail closed when unsupported.
Profile resolution supports single inheritance ("extends": "base"), multiple inheritance ("extends": ["base", "shared"]), and inherited-server removal via "remove", "disabled", or "disabledServers". Missing profiles, invalid JSON, invalid profile names, and inheritance cycles now return explicit profile errors with the affected file path or chain.
ControlCenter loads capability bundle definitions from data/capability-bundles.json. The default file groups local servers into these bundles:
core-localsoftwarefilesystemautomationcontrol-planeCustom bundle files can be supplied with ELLMOS_BUNDLE_CONFIG or with the optional bundleConfigPath input on bundle tools. A bundle file is a JSON object with schemaVersion and a bundles array. Each bundle needs id, title, description, and keywords.
This is the basis for future tool-bloat management: instead of exposing many individual tools immediately, an agent can first choose the capability bundle that fits the task.
controlcenter_list_tools can start local stdio MCP servers or resolved Claude profile servers and call the standard MCP list_tools request. Profile scans support arbitrary stdio commands, including non-Node launchers, and URL-based remote configs using Streamable HTTP or legacy SSE. The scan is explicit, uses a per-server timeout, does not call any reported tool, and closes each spawned local server after reading the tool list.
controlcenter_build_catalog accepts includeTools: true to persist the same probe results alongside the local server catalog.
controlcenter_assign_tool_bundles compares probed tool names, titles, descriptions, server names, source, and transport metadata with capability-bundle keywords, then reports which tools belong to bundles such as filesystem, software, automation, or control plane.
controlcenter_audit_profile is the first small policy layer. It currently flags:
npx startsEnvironment values are never printed.
Policy rules are loaded from data/policy-rules.json by default. The file can disable individual rules or override their severity, and controlcenter_audit_profile also accepts a policyConfigPath input for one-off audits.
| For... | Read... |
|---|---|
| Quick start | START.md |
| Current state | STATE.md |
| Architecture | ARCHITECTURE.md |
| Roadmap | ROADMAP.md |
| Decisions | DECISIONS.md |
| Open tasks | TODO.md |
| Changes | CHANGELOG.md |
| LLM crawler summary | llms.txt |
This MCP server is part of the ellmos-ai ecosystem — AI infrastructure, MCP servers, and intelligent tools.
| Server | Tools | Focus | npm |
|---|---|---|---|
| FileCommander | 47 | Filesystem, process management, interactive sessions, cloud-lock-safe operations | ellmos-filecommander-mcp |
| CodeCommander | 22 | Code analysis, JSON repair, imports, diffs, regex | ellmos-codecommander-mcp |
| Clatcher | 12 | File repair, format conversion, batch operations | ellmos-clatcher-mcp |
| n8n Manager | 19 | n8n workflow management via AI assistants | n8n-manager-mcp |
| ControlCenter | 34 | MCP stack, tool and skill discovery; profile resolution and audit; read-only host lock, permission, decision, policy, plan and resource registers | ellmos-controlcenter-mcp |
| Homebase | 45 | Local-first LLM memory, knowledge, state, routing, swarm orchestration | ellmos-homebase-mcp (alpha) |
| ServerCommander | 8 | Server operations: health checks, log analysis, deploy dry-runs, mail diagnostics | ellmos-servercommander-mcp (alpha) |
| Blender Use | 3 | Headless Blender asset QA and FBX reimport verification | ellmos-blender-use-mcp (alpha) |
| Open Compute | 10 | Model-agnostic computer use: capture, safety-gated actions, Windows UIA | open-compute-mcp (alpha) |
| Project | Description |
|---|---|
| BACH | Local-first text-based OS for LLM agents — 113+ handlers, 550+ tools, SQLite memory |
| workflowhooker-provenance | Local-first lifecycle hooks, scope guardrails & runtime provenance |
| open-compute | Model-agnostic computer-use core powering Open Compute MCP |
| clutch | Provider-neutral LLM orchestration with auto-routing and budget tracking |
| rinnsal | Lightweight agent memory, connectors, and automation infrastructure |
| ellmos-stack | Self-hosted AI research stack (Ollama + n8n + Rinnsal + KnowledgeDigest) |
| MarbleRun | Autonomous agent chain framework for Claude Code |
| gardener | Minimalist database-driven LLM OS prototype (4 functions, 1 table) |
| ellmos-tests | Testing framework for LLM operating systems (7 dimensions) |
| Project | Ecosystem | Focus |
|---|---|---|
| build-your-users-mind | research-line | Open-science user mental model reconstruction & cognitive framework |
Our partner organization open-bricks bundles AI-native desktop applications — a modern, open-source software suite built for the age of AI.
| Project | Ecosystem | Focus |
|---|---|---|
| ProFiler | open-bricks / file-bricks | Advanced file management, checksums, duplicate detection, and batch operations |
| lock-master | open-bricks / file-bricks | Local-first multi-agent project locking and permission governance |
| DokuZen | open-bricks / doc-bricks | Document management, text extraction, OCR, and PDF processing |
| UniversalDocsGrabber | open-bricks / doc-bricks | Universal document grabbing, batch ingestion, OCR & text normalization |
| safe-start-for-codex | open-bricks / dev-bricks | Local-first runtime guard and environment validator for AI coding agents |
| automation-master | open-bricks / dev-bricks | Multi-agent coordination and background automation engine |
| DevCenter | open-bricks / dev-bricks | Developer productivity center and workspace manager |
| CodeBox | open-bricks / dev-bricks | Sandboxed script execution and multi-language scratchpad |
| system-gap-master | open-bricks / dev-bricks | System gap discovery, test gap analysis & contract validation |
MIT - Lukas Geiger (ellmos-ai)
ControlCenter MCP remains a standalone, published MCP server. In the V4
composition it is an optional MCP access surface of the
ellmos-core-discovery-bundle: it exposes local MCP-stack, profile, tool and
skill discovery to people and MCP-capable clients. It is not the functional
owner of policies, decisions, memory, automations, system maps, or the modules
behind the discovered tools.
Configured component registries, local MCP servers, profile files and skill
libraries are discovery partners, not bundled ownership transfers. The
published ControlCenter identity and package name remain unchanged.
ControlRoom is a separate planned operator stack, not a rename or a hidden
replacement for this server.
Authoritative bundle membership, versions, profiles and any private composition recipes remain in the corresponding bundle manifests. This public section is discovery-only.