lotux-mcp
v0.4.0
Published
Local MCP server that lets Claude create LOTUX concepts (fetch brand-DB entities, create concepts, fill scripts + copy). Talks to the LOTUX app with a personal token; no business logic or secrets live here.
Maintainers
Readme
lotux-mcp
Local MCP server that lets Claude (Desktop or Code) create and edit LOTUX concepts: fetch a brand's products / personas / angles / use-cases, create concepts, fill scripts, draft + link ad copy, and assign team members.
It is a thin connector — all logic and data live in the LOTUX app. This package just forwards your tool calls there, authenticated with your personal token. RLS in LOTUX scopes everything to the brands your account can access.
Prerequisites
- Node.js 18+ installed (this is what runs the connector).
- A LOTUX MCP token — generate one in LOTUX → Settings → Connections → MCP server (shown once; revocable any time).
Setup
Add this to your Claude config (Claude Desktop → Settings → Developer → Edit
Config, or Claude Code → ~/.claude.json):
{
"mcpServers": {
"lotux": {
"command": "npx",
"args": ["-y", "lotux-mcp"],
"env": {
"LOTUX_MCP_TOKEN": "lxmcp_…your token…",
"LOTUX_API_URL": "https://app.lotuxagency.com"
}
}
}
}Windows: use "command": "cmd" and
"args": ["/c", "npx", "-y", "lotux-mcp"].
Restart Claude, then try: "list my LOTUX brands".
Env
| Var | Value |
|-----|-------|
| LOTUX_MCP_TOKEN | your personal token from Settings → Connections |
| LOTUX_API_URL | the LOTUX app URL (e.g. https://app.lotuxagency.com) |
