AgentHubAgentHub

Lex

MCP ServerMCP Registry官方收录

io.github.Guffawaffle/lex · v1.0.2

Episodic memory and architectural policy for AI agents. Frames, Atlas, and Policy.

概览

Lex 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "lex": {
      "command": "npx",
      "args": [
        "-y",
        "@smartergpt/lex-mcp"
      ]
    }
  }
}

环境变量

LEX_WORKSPACE_ROOT可选

Root directory for the workspace. Defaults to current working directory.

LEX_MEMORY_DB可选

Path to SQLite database file. Defaults to .smartergpt/lex/lex.db in workspace root.

LEX_DEBUG可选

Set to any value to enable debug logging to stderr.

相关资源

统一 Manifest

{
  "id": "io.github.Guffawaffle/lex",
  "type": "mcp-server",
  "version": "1.0.2",
  "displayName": "Lex",
  "description": "Episodic memory and architectural policy for AI agents. Frames, Atlas, and Policy.",
  "repository": {
    "url": "https://github.com/Guffawaffle/lex",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@smartergpt/lex-mcp",
        "version": "1.0.2",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "LEX_WORKSPACE_ROOT",
            "description": "Root directory for the workspace. Defaults to current working directory."
          },
          {
            "name": "LEX_MEMORY_DB",
            "description": "Path to SQLite database file. Defaults to .smartergpt/lex/lex.db in workspace root."
          },
          {
            "name": "LEX_DEBUG",
            "description": "Set to any value to enable debug logging to stderr."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.Guffawaffle/lex",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.Guffawaffle%2Flex/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Lex — MCP Server 安装与配置 · AgentHub