MCP install

labsly's MCP servers are free for AI agent developers. Use them in Claude Code, Cursor, Cline, Aider, or any MCP-compatible host.

Available servers

Quick install

Systema MCP

pipx install labsly-systema-mcp

Add to Claude Code (~/.claude/config.json)

{
  "mcpServers": {
    "systema": {
      "command": "labsly-systema-mcp",
      "args": []
    }
  }
}

Add to Cursor (.cursor/mcp.json)

{
  "mcpServers": {
    "systema": {
      "command": "labsly-systema-mcp"
    }
  }
}

Add to Cline / Aider

See per-host docs for MCP integration. The labsly servers follow the standard MCP protocol — any MCP-compatible host works.

Shared response envelope

All labsly MCP tools return a shared envelope so AI agents can reason about outputs consistently:

{
  "result": "<tool-specific payload>",
  "needs_revision": true | false,
  "action_items": [
    { "severity": "high" | "medium" | "low",
      "description": "<what to do>",
      "rationale": "<why>" }
  ],
  "pass_threshold": {
    "score": 0.0-1.0,
    "passed": true | false,
    "explanation": "<what threshold means>"
  },
  "provenance": {
    "tool": "<tool name>",
    "model": "<model used>",
    "confidence": 0.0-1.0,
    "epistemic_source": "stated" | "inferred" | "synthesized" | "observed"
  }
}

Schema: labsly.com/schemas/persona-v1.json for the persona format used across the Suite.

Why free?

MCP servers are a distribution channel, not a revenue line. Every developer who installs a labsly MCP server is a potential Mac app customer. The Mac apps pay for the platform.