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
Hyper MCP
A fast, secure, and extensible MCP server using WebAssembly plugins.
MCP Bridge API
A lightweight, LLM-agnostic RESTful proxy that unifies multiple MCP servers under a single API.
Rails MCP Server
An MCP server for Rails projects, allowing LLMs to interact with your application.
MCP Think Tool Server
An MCP server implementing the 'think' tool to improve Claude's complex reasoning capabilities.
Quantum Computation
Perform quantum computations using OpenAI and IBM Quantum APIs.
Vibe-Coder
A server for a structured, LLM-based coding workflow, from feature clarification and planning to phased development and progress tracking.
Qase
Interact with the Qase API for test management. Requires a QASE_API_TOKEN for authentication.
ITerm MCP Server
An MCP server for iTerm2, enabling AI assistants to interact with the terminal.
MCP LLM Integration Server
An MCP server for integrating local Large Language Models with MCP-compatible clients.
Bruno MCP Server
Execute Bruno collections using the Bruno CLI, with support for environment files and detailed test results.