An extensible MCP server hosting multiple tools for lsFusion development. Ships with RAG search tools, syntax validation, and mandatory guidance.
Transports:
- STDIO for local development / desktop MCP clients.
- Streamable HTTP for production via Uvicorn (mounted at
/mcp).
lsfusion_get_guidance(rules?: string, brief?: string): Read ONE guidance article whole. With no arguments, the top article of each branch — base material plus the complete map of that branch. With a name, that area's article entire: no search, no ranking, no excerpt.lsfusion_retrieve_docs(query: string | string[], type?: "language" | "paradigm" | "how-to"): Official documentation search (English content only). All three reference branches are searched whentypeis omitted.briefandrulesare still accepted for compatibility but are no longer part of the corpus — those two branches are addressed by name throughlsfusion_get_guidance, and passing one here returns a pointer to that tool.lsfusion_report_feedback(report): Submit one anonymous, depersonalized reinforcement-quality signal (the feedback-loop sink) — classified bysignal_type(doc gap, expectation-mismatch, unclearevalerror, missing capability, RAG miss, other). The agent calls it — per theget_guidanceworkflow rule and only with user consent — when a task hit action-affecting friction. Server-side: anti-abuse caps, best-effort redaction, server-computeddedup_fingerprint, append to thereportsevent stream. Gated byFEEDBACK_ENABLED. Returns{report_id, status, dedup_fingerprint}. SeeMCP-FEEDBACK-PLAN.md.
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
export OPENAI_API_KEY=sk-... RAG_VECTOR_STORE_ID=vs_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# STDIO transport
python server.py stdio
# HTTP transport
python server.py http --host 0.0.0.0 --port 8000mcp install server.py
mcp dev server.pyCreate a new module under tools/ and register it with @mcp.tool() in server.py (or build an auto-discovery
if you prefer). Keep tool signatures simple and JSON-serializable.
Returns an array of objects:
{
"docs": [
{ "source": "documentation-language", "text": "....", "score": 0.73 },
{ "source": "documentation-paradigm", "text": "....", "score": 0.69 }
]
}Ranked by score — the similarity of the chunk to the query. Structured
output is enabled.
query accepts a list of distinct queries when the caller needs several
independent things at once (on real traffic 85% of call bursts carry two or
more topics). The batch is one embeddings round trip instead of several, and
shares ONE budget (BATCH_TOTAL_CAP, at most BATCH_MAX_QUERIES queries)
rather than multiplying it, so it never costs more context than the separate
calls it replaces. type and exclude_ids apply to every query in the batch.
A chunk answering two queries is returned once, credited to the query it
scored higher for, and every chunk carries the query it is credited to
(null when only one was submitted). The per-query share is a ceiling, not a
guarantee: a query whose best chunks all belong to a neighbour returns fewer.
OPENAI_API_KEY— OpenAI API key (required).RAG_VECTOR_STORE_ID— OpenAI Vector Store id thatlsfusion_retrieve_docssearches against (required). Must match the store populated by theragIngestDocsJenkins pipeline.EMBEDDING_MODEL— OpenAI embedding model (defaulttext-embedding-3-large).MCP_SERVER_VERSION— build identifier (image digest / git sha) stamped into every event log line (defaultunknown).LOG_DIR— directory for dated JSONL event files. Empty (default) ⇒ event logs go to stderr only. Set it to a writable (uid 10001) bind-mount to also appendretrieval-YYYYMMDD.jsonl(Phase A2).RETRIEVAL_BACKEND—store(OpenAI Vector Store) orlocal(the in-process snapshot; falls back to the store when the snapshot is missing or the embedding call fails).RAG_SNAPSHOT_PATH— where the local backend looks for the corpus snapshot (default/data/snapshot/corpus.npz).SNAPSHOT_MAX_AGE_DAYS— how old a snapshot may get before every load warns (default 7; a warning, never a refusal).BATCH_TOTAL_CAP/BATCH_MAX_QUERIES— the shared chunk budget of a multi-query call and the most queries one may carry (default 24 / 4).QUERY_LOG_MAX_CHARS/ERROR_LOG_MAX_CHARS— caps on the verbatim query / error text stored in logs (default 2000 / 500).
Every lsfusion_retrieve_docs call emits one structured JSON line (best-effort — a logging failure never breaks the tool). Envelope {schema_version, event, ts (ISO-8601 UTC ms), server_version, ok} plus {query (capped), type, n_requested, n_results, top_score = max(results[].score), latency_ms, results:[{rank, source, file_id, filename, score}]} — no chunk text; error_class/error_message on failure. Written to stderr (keeps the STDIO transport's stdout protocol channel clean; Docker's json-file captures stderr anyway), and additionally to a dated file when LOG_DIR is set. See MCP-FEEDBACK-PLAN.md.
Build and run:
docker build -t lsfusion/mcp:latest .
docker run --rm -p 8000:8000 \
-e OPENAI_API_KEY=$OPENAI_API_KEY \
-e RAG_VECTOR_STORE_ID=$RAG_VECTOR_STORE_ID \
lsfusion/mcp:latestOr via Compose:
docker compose up --buildDo not hardcode secrets. Options:
-
Kubernetes Secrets + external secret store
- Store secrets in AWS Secrets Manager / GCP Secret Manager / HashiCorp Vault.
- Sync into K8s as
Secretvia External Secrets Operator. - Mount as env vars in the Deployment:
env: - name: OPENAI_API_KEY valueFrom: { secretKeyRef: { name: mcp-secrets, key: openai } } - name: RAG_VECTOR_STORE_ID valueFrom: { configMapKeyRef: { name: mcp-config, key: rag_vector_store_id } }
-
Docker Swarm / Compose secrets
- Use
secrets:and mount files into the container, then export into env at entrypoint:services: mcp: image: lsfusion/mcp:latest secrets: [openai_key] environment: - RAG_VECTOR_STORE_ID secrets: openai_key: { file: ./secrets/openai_key.txt }
- Read them in an entrypoint script:
export OPENAI_API_KEY="$(cat /run/secrets/openai_key)" exec python server.py http --host 0.0.0.0 --port 8000
- Use
-
Cloud run / App services (ECS, Cloud Run, App Service)
- Inject as environment variables wired to a managed secret store (e.g., AWS Parameter Store / Secrets Manager).
- Rotate periodically; grant least-privilege IAM.
-
CI/CD (GitHub Actions)
- Store in Actions Secrets.
- At build/deploy time pass them into the container as env vars or bake only into the runtime environment (never into the image).
This app reads credentials from environment variables, so your orchestrator should inject them from a secure store.
Prefer secret stores over committing .env files.
- Run as non-root (done in Dockerfile).
- Keep logs to stdout/stderr; in STDIO mode, avoid extra prints (MCP uses stdio).
- Set request timeouts and retries in your MCP client / reverse proxy.
- Add health endpoint (optional) and readiness checks on
/mcphandshake.
FastMCP reads host/port from environment variables:
MCP_HOST(default:127.0.0.1)MCP_PORT(default:8000)
Examples:
Local run
export OPENAI_API_KEY=sk-... RAG_VECTOR_STORE_ID=vs_xxxx
export MCP_HOST=0.0.0.0 MCP_PORT=8000
python server.py httpDocker
docker run --rm -p 8000:8000 \ -e OPENAI_API_KEY=$OPENAI_API_KEY \ -e RAG_VECTOR_STORE_ID=$RAG_VECTOR_STORE_ID \ -e MCP_HOST=0.0.0.0 \ -e MCP_PORT=8000 \ ghcr.io/<org>/<repo>/lsfusion-mcp:latest