mom-mcp-lite
Click on "Deploy 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., "@mom-mcp-liteshow me the scheduled pipelines for tenant acme"
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.
mom-mcp-lite
A runtime-only variant of mom-mcp: the same MCP server + REST API for datasets, connections, flows, pipelines, and cron — without server-side AI/LLM execution and without a full entity-authoring admin UI. It's meant to be a deployment target, not a design environment.
What's different from full mom-mcp
No server-side LLM execution.
Settings.server_llm_enableddefaults toFalse—ServerContext.llm_default()raisesLLMNotConfiguredimmediately and deliberately, rather than incidentally because no API key is set. Every existing caller that already handlesLLMNotConfiguredgracefully (MCPinvoke_skill's sampling fallback, dashboardai_insight/ai_actions,jit_sequencer's AI-recommend,/query,text2sql,kb_lookup) degrades cleanly with zero code changes.No bundled chat.
POST /studio/chat(the in-process SSE chat orchestrator) returns501— it always needs a server-side LLM by construction (multi-turn planning), so there's no clean way to keep it working underserver_llm_enabled=False. The/studio/chat/sessions*history-CRUD routes stay enabled: a paired client with its own chat implementation (mom-portal'sbff/chat.py, its own LLM key) reads/writes that same history store remotely and never calls the bundled orchestrator at all.Tenant configuration is deployed via package import, not authored here. Datasets, skills, dashboards, flows, pipelines, glossary, REST actions, etc. are meant to arrive as a signed
.mcp-pkg.zipexported from a full mom-mcp instance (packaging/bundle.py, already ships every entity kind includingflows). This variant ships with no exampletenants/and noskills_repository/— both are populated by import, not by shipping example content.No bundled Apriso version templates.
templates/starts empty (PrimaryDataStore.from_templates_roothandles a missing/empty root gracefully) — the multi-GB Apriso 2023/2025 template bundles aren't copied.New:
POST /tenants/{tenant_id}/cron/{job_id}/run-now— full mom-mcp has no way to fire a cron job outside its schedule; a lite deployment's operator UI needs one (e.g. run a job immediately right after importing/editing it). ReusesSchedulerRunner._run_jobverbatim (same locking/status/audit trail a real scheduled firing gets), off-loaded viaasyncio.to_threadsince that method may itself callasyncio.run()internally for arun_flowaction.No admin frontend build.
web/adminisn't copied/built into this tree yet —/adminserves a placeholder page (admin/ui.py's existing graceful fallback). The operator-facing slice (Users, Roles, Server settings, Cron, Pipelines, Connections) is a follow-up, not part of this pass.
Related MCP server: Local AI MCP
What's identical to full mom-mcp
Everything else — ServerContext, TenantResolver, ConfigStore,
ConnectionManager, DatasetEngine, SkillRunner, FlowEngine,
PipelineExecutor, SchedulerRunner, the full admin_router/studio_router
REST surface, and every MCP tool — is an unmodified copy. A client (e.g.
mom-portal with MOM_PORTAL_LLM_MODE=portal) needs zero code changes to
point at this server instead of a full one: it never touches the
entity-authoring REST routes at all (see mom-portal's bff/proxy.py
allowlist), and the dashboard/chat-tool prepare→own-LLM→finalize split it
already uses doesn't need this server to have any LLM configured.
Running it
cd mom-mcp-lite
python -m venv .venv
.venv\Scripts\pip install -e ".[dev]"
.venv\Scripts\python -m mom_mcp init --username admin
.venv\Scripts\python -m mom_mcp serve --host 127.0.0.1 --port 8787Then point a client (mom-portal, or any MCP client) at
http://127.0.0.1:8787.
Known gaps / not yet done
No trimmed admin frontend (Users/Roles/Server/Cron/Pipelines/Connections) —
/adminis a placeholder untilweb/adminis built and copied in, restricted to those routes.No route-level trimming of
admin_router— every full-mom-mcp REST route is still mounted (harmless with no frontend exposing them, but not yet a hardened "operator can only touch these six things" boundary).Fire-and-forget AI triggers (cron
invoke_skill/run_flow, MQTT ruleinvoke_skill, MQTT-arrival pipelineinvoke_skill/run_flow, a skill's ownpost_action: run_flowchain) have no live caller to relay a portal completion through — they simply won't work withserver_llm_enabledoff, by design, not by a bug. Flip the setting toTruefor a "lite+" deployment that still wants server-side AI for those specific triggers.
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP server for AI-driven data ops. Create apps, manage schemas, and CRUD structured data.
Governed data discovery, exact queries, decisions, simulations, and runtime utilities over MCP.
Build, validate, deploy — HTTP APIs, cron jobs, webhooks and MCP tools — from your AI client.
Build multi-tenant apps over MCP. Schemas, CRUD, deploys — access control enforced server-side.
Related MCP Servers
- AlicenseAqualityDmaintenanceA lightweight, local-first MCP server for executing HTTP requests and managing API collections and environments without cloud dependencies. It enables testing APIs, handling authentication, and importing OpenAPI specifications directly within MCP-compatible workflows.4250 npm9MIT

Local AI MCPofficial
AlicenseAqualityAmaintenanceUnified MCP server for managing local model runtimes (Ollama, LM Studio, etc.), enabling provider-agnostic discovery, lifecycle management, hardware-fit checks, and delegated inference.1618 npmCreative Commons Attribution Non Commercial No Derivatives 4.0 International- AlicenseNot gradedqualityDmaintenanceUnified control plane and runtime for the Model Context Protocol ecosystem, enabling plugin management, configuration, permissions, and API gateway services.8 npm1MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server that exposes any REST API to LLMs through runtime discovery, providing tools to browse endpoints, fetch schemas, and apply business rules without hardcoding or schema duplication.MIT