npm @kozmos-tech/inhaltstdioMITupdated 2mo ago
Inhalt is an open-source, MCP-native CMS. Instead of clicking through a traditional admin UI, the content layer is exposed through the Model Context Protocol (MCP). Any MCP client connects to the Inhalt server and you create and edit content just by chatting.
What can you do with inhalt?
Inhalt
The CMS your AI tools can run.
Inhalt is an open-source, MCP-native CMS. Instead of clicking through a traditional admin UI, the content layer is exposed through the Model Context Protocol (MCP). Any MCP client connects to the Inhalt server and you create and edit content just by chatting.
The protocol is the API. The client reads your content schema, finds the right entry, and proposes a clean, typed patch against real fields, never freeform text.
- Website: inhalt.tech
- MCP endpoint:
https://inhalt.tech - License: MIT
- Self-hostable: one container, your database, your keys. A hosted edge is also available.
How it works
Three steps.
- Connect the endpoint. Add one block to your MCP config. Inhalt exposes your whole content tree as typed tools.
- Operate on content. The client reads the schema, finds the right entry, and proposes a clean patch against real, typed fields.
- Save and publish. Every change is checked against your schema, saved, and pushed to your live read API in one step.
See docs/getting-started.md for the MCP config and a full walkthrough.
Features
| Feature | Description |
|---|---|
| MCP-native | The protocol is the API. Read, query, and patch content through tools any client already understands. |
| Typed schemas | Model content once. Clients work strictly inside your fields, validated and never freeform. |
| Drafts and review | Stage edits, preview them, and publish only when they are ready. |
| Headless delivery | Query from anywhere over a clean, fast read API. |
| Scoped access | Grant a client exactly the entries and actions it should touch. |
| Self-host | One container, your database, your keys. MIT licensed, end to end. |
Supported clients
Inhalt works with every MCP client, including Claude, Cursor, VS Code, Zed, Windsurf, and Cline.
Documentation
- Getting started - connect an MCP client and operate on content.
- Concepts - projects, content types, entries, and the draft/publish model.
- API reference - the Read API and MCP API.
- Development - run the repo locally, environment, and scripts.
- Code organization - project layout and where new code goes.
- Copy & tone - writing guidelines for product copy.
- Roadmap - planned work (auth, self-host).
License
Install
Add inhalt to your client. Pick the one you use.
claude mcp add inhalt -- npx -y @kozmos-tech/inhaltcodex mcp add inhalt -- npx -y @kozmos-tech/inhaltamp mcp add inhalt -- npx -y @kozmos-tech/inhalt{
"mcpServers": {
"inhalt": {
"command": "npx",
"args": [
"-y",
"@kozmos-tech/inhalt"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"inhalt": {
"command": "npx",
"args": [
"-y",
"@kozmos-tech/inhalt"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"inhalt","command":"npx","args":["-y","@kozmos-tech/inhalt"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"inhalt": {
"command": "npx",
"args": [
"-y",
"@kozmos-tech/inhalt"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"inhalt": {
"command": "npx",
"args": [
"-y",
"@kozmos-tech/inhalt"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"inhalt": {
"command": "npx",
"args": [
"-y",
"@kozmos-tech/inhalt"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"inhalt": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@kozmos-tech/inhalt"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"inhalt": {
"command": {
"path": "npx",
"args": [
"-y",
"@kozmos-tech/inhalt"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @kozmos-tech/inhaltRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation16/25
- Maintenance16/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 56 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.1Latest | Jul 6, 2026 |
| 0.1.0 | Jul 6, 2026 |