LAML MCP Server - Secure MCP Server by ALMC Security 2025

LAML MCP Server

View on GitHub

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

  1. Install and build:
npm install
npm run build
  1. 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"]
      }
    }
  }
}
  1. 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 in Development - Secure MCP Servers

ServerSummaryActions
MCP ZepAi ServerThis repository contains the MCP (Model Context Protocol) server for the ZepAi module. The server is...View
MCP ClientNo documentation available.View
Unstructured API MCP ServerAn MCP server implementation for interacting with the Unstructured API. This server provides tools t...View
Trade-MCPA modular trading automation project using Zerodha Kite Connect and MCP (Modular Command Platform) f...View
Odoo XML-RPC MCP ServerA Model Context Protocol (MCP) server that provides tools for interacting with Odoo via XML-RPC.View
Multichain MCP ServerView