🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

lu-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lu-mcp-server

MCP server for Lingua Universale protocol verification -- verify AI agent communication with session types

pipPyPI
Version
0.1.3
Weekly downloads
52
Maintainers
1
Created

lu-mcp-server

MCP server for Lingua Universale protocol verification.

Verify AI agent communication with session types -- mathematical proofs, not trust.

Install

pip install lu-mcp-server

Configure

Claude Code

claude mcp add lu-mcp-server -- lu-mcp-server

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "lu-mcp-server": {
      "command": "lu-mcp-server"
    }
  }
}

Cursor / Windsurf

Add to your MCP settings:

{
  "lu-mcp-server": {
    "command": "lu-mcp-server"
  }
}

Tools

lu_load_protocol

Parse a .lu protocol definition and extract its structure.

lu_verify_message

Check if a message is valid in the context of an ongoing session.

lu_check_properties

Verify formal safety properties (always terminates, no deadlock, etc.).

lu_list_templates

Browse 20 standard library protocols across 5 categories.

Example

protocol OrderProcessing:
    roles: customer, warehouse, payment
    customer asks warehouse to check availability
    warehouse returns stock status to customer
    when customer decides:
        in_stock:
            customer asks payment to process order
            payment returns confirmation to customer
        out_of_stock:
            customer sends cancellation to warehouse
    properties:
        always terminates
        no deadlock
        all roles participate
  • Playground -- try LU in your browser
  • PyPI -- core package
  • VS Code -- editor extension

License

Apache 2.0

Keywords

ai-agents

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts