Documentation MCP Server
When you ask Cursor about defineSection, or Claude Code about an Orchestr query, you want it to quote this documentation rather than guess from training data. The Documentation MCP Server at https://docs.laioutr.com/mcp lets any MCP-aware client search and cite the same pages you are reading now.
This server exposes documentation only. It cannot access your projects, Cockpit organizations, Studio content, or other Laioutr data.
Connect to Laioutr MCP for project access
One-click install
Manual setup
Add the server from the CLI:
claude mcp add --transport http laioutr-docs https://docs.laioutr.com/mcp
Then restart Claude Code. Verify with claude mcp list.
Alternatively, install the Laioutr Claude Code plugin, which registers this MCP server alongside Laioutr-specific skills and conventions.
Edit ~/.cursor/mcp.json (or .cursor/mcp.json in your project):
{
"mcpServers": {
"laioutr-docs": {
"url": "https://docs.laioutr.com/mcp"
}
}
}
Edit .vscode/mcp.json in your workspace:
{
"servers": {
"laioutr-docs": {
"type": "http",
"url": "https://docs.laioutr.com/mcp"
}
}
}
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"laioutr-docs": {
"serverUrl": "https://docs.laioutr.com/mcp"
}
}
}
Add to your Zed settings.json:
{
"context_servers": {
"laioutr-docs": {
"command": {
"path": "npx",
"args": ["-y", "mcp-remote", "https://docs.laioutr.com/mcp"]
}
}
}
}
Using it
Once connected, point the assistant at a question the docs can answer, for example:
- "Using the Laioutr docs, show me how to define a product Section with
defineSection." - "Look up the Orchestr query for cart line items in the Laioutr docs."
The client will call the docs MCP server, fetch the matching pages, and ground its answer in them.
Claude Code plugin
Install the Laioutr developer plugin in Claude Code to load the same workflows, conventions, and docs MCP server that the Laioutr core team uses.
Frontend
The Laioutr frontend is the customer-facing Nuxt app with pages, sections, and blocks composed in Studio, powered by a unified data layer (Orchestr) and a set of features you can extend. Start here to understand the product and navigate the docs.