LAML MCP Server
Loads and validates LAML (YAML-based markup language) documents via the Model Context Protocol.
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
Quick 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: true
Load File Content
The server returns raw file content as string for further processing by your application.
Available Operations
- loadLaml: Load LAML document from file path
Requirements
- Node.js 18+
- Cursor with MCP support
Related Servers
EVE Online ESI MCP Server
An MCP server for interacting with the EVE Online ESI (EVE Swagger Interface) API.
Remote MCP Server (Authless)
A remote MCP server deployable on Cloudflare Workers without authentication.
GrowthBook
Create and read feature flags, review experiments, generate flag types, search docs, and interact with GrowthBook's feature flagging and experimentation platform.
TestRail MCP Server
Interact with TestRail to manage test cases, projects, suites, and runs directly from your AI chat client.
Hyperlane MCP Server
Integrates with the Hyperlane protocol for cross-chain messaging and smart contract interactions.
nf-core MCP Server
Manage and navigate local nf-core pipeline repositories.
Intlayer
A MCP Server that enhance your IDE with AI-powered assistance for Intlayer i18n / CMS tool: smart CLI access, versioned docs.
Unified Diff MCP Server
Beautiful HTML and PNG diff visualization using diff2html, designed for filesystem edit_file dry-run output with high-performance Bun runtime.
ID Generator MCP
Generate unique IDs using various algorithms like UUID, CUID2, Nanoid, and ULID.
My MCP Server
A remote MCP server example deployable on Cloudflare Workers without authentication.