kcf-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., "@kcf-mcpModel a to-do list app with users and tasks."
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.
KCF โ The Semantic Framework for Making Knowledge Executable
The open Knowledge Coding Framework from Composable Holdings Inc.
KCF helps you encode and capture business knowledge โ entities, relationships, lifecycles, rules, and actions โ so that it can be made executable. Knowledge Coding is the new Vibe Coding: you model your domain into a complete, machine-checked semantic spec, then let an LLM build the application from that spec instead of guessing from prose โ knowledge coding = semantic modeling + vibe coding.
๐ Start here: Knowledge Coding โ get running in 3 minutes
Two ways in: ๐ฑ no install โ point your chat LLM at the hosted connector and just describe your app; or ๐ ๏ธ build for real โ
pip install+kcf inita project where the model stays the source of truth.
KCF turns domain knowledge โ entities, relationships, lifecycles, actions, events โ into a normalized semantic IR: a single JSON model that is valid (no dangling references), complete (every entity has an identity, every required obligation met), and traceable (nothing is silently dropped on the way to code). The LLM builds against that spec, not a vibe.
requirements โโโถ checked model (IR) โโโถ LLM โโโถ app (built from a spec)
โฒ โ kcf assess: valid? gaps? โ guidance
โโโโโโโโโโโโโโWhy this exists
LLM code generators are only as good as the model of the domain they're given. Feed them a paragraph and they hallucinate fields, invent relationships, and drop half your lifecycle. KCF makes the model the artifact:
Well-formed? the grammar / compiler answers that (syntax).
Valid? the semantic analyzer answers that (no relationship points at a missing concept).
Complete enough to build from?
kcf assessanswers that with a single verdict: valid (analyzer-clean โ enough to generate) and ready (also complete: zero required coverage gaps, patterns proven, roles resolved).
You generate from a valid model; the coverage gaps travel to the LLM as
enrichment guidance (ready is the completeness goal, not a hard gate). The
generated code ends with a coverage self-audit proving nothing in the model
was dropped (dropped: []).
Related MCP server: BESSER-MCP-Server
60-second quickstart
pip install kcf-oss # provides the `kcf` command
# 1. compile a tiny domain model โ semantic IR (grab the sample from the repo)
curl -O https://raw.githubusercontent.com/mikec-chi/kcf-oss/main/kcf-oss/tests/domains/business-application.kcf
kcf compile business-application.kcf --output model-ir.json --validate
# 2. is it complete enough to generate from?
kcf assess model-ir.json
# โ { "valid": true, "ready": true,
# "checks": { "coverage": { "requiredGaps": 0 } } }Once ready: true, generate the application. KCF stops at the IR โ the IR is
the durable specification; your own LLM turns it into code for whatever stack you
choose, guided by a stack-agnostic system prompt and a single-shot example.
# 3. generate โ with any LLM, for any stack (codegen/). Two tiers meet at OpenAPI:
# BACKEND โ generate-backend.md + a backend stack โ a service with Swagger by default
# (fastapi-sqlmodel-postgres ยท typescript-express-prisma ยท django-drf-postgres)
# FRONTEND โ generate-frontend.md + the backend's /openapi.json + a frontend stack
# (react-typescript-openapi) โ a UI bound to that contractThe LLM returns the implementation plus a coverage self-audit proving every
IR identity was realized and nothing dropped (dropped: []). See
kcf-oss/codegen/ and, for the full requirements-to-code
tour, kcf-oss/docs/WALKTHROUGH.md.
KCF stops at the IR โ a complete, machine-checked model is the deliverable. Turning it into running code is the LLM codegen pack's job.
From source instead:
git clone https://github.com/mikec-chi/kcf-oss.git && cd kcf-oss && pip install -e .A source checkout also gives you the contributor gate (kcf check) and the full-stack tooling, which need the bundledsemantic-core.
Use it in your chat LLM (MCP)
Plug KCF into the chat LLM you already use and it builds a complete, machine-checked model of your domain, then generates the app from it โ instead of vibe-coding against prose.
๐ฑ No install โ connect to the hosted server. Point your LLM at the hosted
connector https://kcf-mcp.onrender.com/mcp:
claude mcp add --transport http kcf https://kcf-mcp.onrender.com/mcp # Claude Code
# ChatGPT: Settings โ Connectors โ add that URL. (Read-only demo; free tier, sleeps when idle.)๐ ๏ธ Building for real โ install locally and seed a project:
pip install "kcf-oss[mcp]" # the `kcf` CLI + the `kcf-mcp` server
kcf init my-app # a project where the model is the source of truth
claude mcp add kcf -- kcf-mcp # local Claude Code; see kcf-oss/mcp/README.md for other hostsEither way, describe your domain โ or invoke a guided prompt (model_domain end
to end, build_model to model only, generate_app to generate only). The
assistant drafts a .kcf, checks it, lets you approve anything it inferred
(bulk-accept the confident gaps, or review them one by one), then generates the
backend and a matching frontend โ each proving nothing in your model was dropped.
See Knowledge Coding for both paths, step by
step.
Try it in the browser
Prefer a UI? The playground is a zero-persistence web
app: paste a .kcf model and see its IR, readiness verdict, and the ready-to-paste
LLM code-generation prompt for your chosen stack โ the whole loop, live.
pip install "kcf-oss[playground]"
uvicorn app:app --app-dir kcf-oss/playground # โ http://127.0.0.1:8000
# or: docker build -f kcf-oss/playground/Dockerfile -t kcf-playground . && docker run -p 8000:8000 kcf-playgroundWhat's in the box
Piece | What it is |
Grammars | 29 ISO/IEC 14977 EBNF modules โ one primary semantic dimension each ( |
Compiler |
|
Analyzer | validity + coverage + pattern-proof + role-resolution checks |
IR schema | versioned |
Codegen pack |
|
MCP server |
|
LLM workflow | an ordered 16-step prompt package ( |
Learn more
Knowledge Coding โ get started โ connect KCF to your LLM and build your first app (start here).
QUICKSTART โ the hello-world above, annotated.
codegen/ โ generate an app from the IR with your LLM, for any stack.
WALKTHROUGH โ requirements โ ready IR โ generated app.
CONCEPTS โ the mental model and the four semantic layers.
kcf-oss/README โ full architecture, IR contract, and toolchain reference.
EXTENDING โ how to change or add a grammar (and the Grammar RFC process).
CHANGELOG โ releases, tagged by which contract moved.
Open core
KCF is open under Apache-2.0 โ the standard, compiler, analyzer, IR schema, and the codegen pack are free to use and always will be. A separate commercial platform builds on top of this standard; it never subtracts from it. See OPEN_CORE.md for the exact promise.
Contributing
KCF gets better the more people model with it. Two tracks โ start with CONTRIBUTING.md:
Build on KCF โ share in the
community/area:.kcfmodels you built, prompt packs (elicitation guides + codegen overrides) that tuned the MCP for you, techniques for eliciting and generating well, a showcase of apps you shipped, and experimental grammars. Each area has a template and a quick check (models must bevalidโpython community/models/validate.py).Improve the core โ new codegen stacks, analyzer rules, integrations, or grammar changes (read EXTENDING and open a Grammar RFC first). The core is gated by
kcf check(runs in CI on every PR).
New here? A model of a domain you know, or a technique that worked for you, is a great first PR. See the good first issues.
License
Apache-2.0. ยฉ 2026 Composable Holdings Inc. KCF is created and maintained by Composable Holdings Inc.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceGenerates production-ready MCP servers from natural language, OpenAPI specs, database schemas, GraphQL schemas, or ontologies.691MIT
- Alicense-qualityDmaintenanceMCP server for BESSER low-code platform enabling AI assistants to create, manipulate, and generate code from domain models through natural language. Supports model creation, deletion, and multi-language code generation (SQL, Python, Java, etc.) via the Model Context Protocol.8MIT
- AlicenseCqualityAmaintenanceAn MCP server implementing Spec-Driven Development workflows for AI-agent CLIs and IDEs like Claude Code and Cursor, enabling spec-first development with automated workflow guidance and quality checks.1610348MIT
- AlicenseAqualityBmaintenanceAn MCP server that turns a rough project idea into a structured spec, running entirely locally inside any MCP-compatible editor.4105MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for generating rough-draft project plans from natural-language prompts.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
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/mikec-chi/kcf-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server