
LAML MCP Server
from EgorKluch
Loads and validates LAML (YAML-based markup language) documents via the Model Context Protocol.
๐ฅ๐ฅโ VerifiedFreeQuick setup
LAML MCP Server
Parse and validate LAML (YAML-based markup language) documents through Model Context Protocol.
What it does
- Load LAML documents from filesystem via MCP protocol
- Integrate with Cursor for LAML file access
Available Operations
- loadLaml: Load LAML document from file path
Copy & paste โ that's it
npm install
npm run buildQuick Start
- Install and build:
npm install
npm run build- Configure MCP server in Cursor:
Option A: Global MCP settings (recommended)
Create or edit ~/.cursor/mcp_settings.json:
{
"mcpServers": {
"laml-mcp-server": {
"command": "node",
"args": ["/absolute/path/to/your/project/dist/index.js"]
}
}
}Option B: Project-specific settings Add to your Cursor workspace settings:
{
"mcp": {
"servers": {
"laml-mcp-server": {
"command": "node",
"args": ["/absolute/path/to/your/project/dist/index.js"]
}
}
}
}- Activate server: In Cursor settings, toggle MCP off/on or restart Cursor
Usage Examples
Load LAML Document
# Example LAML document
$meta:
name: 'myDocument'
purpose: "Document description"
version: 1.0
content:
title: 'documentTitle'
description: "Human readable description"
enabled: trueLoad File Content
The server returns raw file content as string for further processing by your application.
Requirements
- Node.js 18+
- Cursor with MCP support
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.