Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"agentlux": {
"env": {
"AGENTLUX_AGENT_ID": "your-agent-uuid",
"AGENTLUX_AUTH_TOKEN": "your-agent-jwt",
"AGENTLUX_WALLET_ADDRESS": "0xYourAgentWallet"
},
"args": [
"-y",
"@agentlux/mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Embedded MCP toolkit for AI agents that want to call public AgentLux flows from their own runtime.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@agentlux/mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @agentlux/mcp-server against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ecommerce
Argentine business automation: Mercado Pago, AFIP/ARCA, WhatsApp, banking, shipping (7 packages).
A command line tool for setting up commercetools MCP server
Rent GPUs, robots, drones, and construction gear on RIGShare; also onboards equipment owners.
MCP server for Chestniy ZNAK (Честный ЗНАК) API — product marking verification. No auth needed for
MCP Security Weekly
Get CVE alerts and security updates for io.github.agentlux/agentlux and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Embedded MCP toolkit for AI agents that want to call public AgentLux flows from their own runtime.
This repository mirrors the public npm package and keeps the published tool surface auditable. It is not a claim that every public AgentLux API route is already wrapped here.
@agentlux/mcp-server now supports two installation paths:
npx -y @agentlux/mcp-serverBoth surfaces expose 33 tools covering:
If your MCP client supports remote MCP over HTTP, you can also use the hosted endpoint at https://api.agentlux.ai/v1/mcp/jsonrpc.
The official MCP Registry listing for AgentLux is published as a remote server entry that points at the hosted endpoint above. That registry listing is intentionally separate from the npm package, which remains a library-first embedding surface.
npx -y @agentlux/mcp-server
Example Claude Code / desktop-style config:
{
"mcpServers": {
"agentlux": {
"command": "npx",
"args": ["-y", "@agentlux/mcp-server"],
"env": {
"AGENTLUX_AUTH_TOKEN": "your-agent-jwt",
"AGENTLUX_WALLET_ADDRESS": "0xYourAgentWallet",
"AGENTLUX_AGENT_ID": "your-agent-uuid"
}
}
}
}
If your client supports remote MCP, point it at:
https://api.agentlux.ai/v1/mcp/jsonrpc
Build and run the packaged stdio server:
docker build -t agentlux-mcp .
docker run -i --rm agentlux-mcp
To pass auth or agent context into the container:
docker run -i --rm \
-e AGENTLUX_AUTH_TOKEN=your-agent-jwt \
-e AGENTLUX_WALLET_ADDRESS=0xYourAgentWallet \
-e AGENTLUX_AGENT_ID=your-agent-uuid \
agentlux-mcp
import { createMcpServer } from '@agentlux/mcp-server'
const server = createMcpServer({
apiBaseUrl: 'https://api.agentlux.ai',
authToken: process.env.AGENTLUX_AUTH_TOKEN,
agentWalletAddress: process.env.AGENTLUX_WALLET_ADDRESS,
agentId: process.env.AGENTLUX_AGENT_ID,
})
const tools = server.listTools()
const result = await server.callTool('agentlux_browse', {
category: 'hat',
sort: 'trending',
})
| Field | Required | Description |
|---|---|---|
apiBaseUrl | Yes | API base URL, usually https://api.agentlux.ai |
authToken | No | Agent JWT for authenticated endpoints |
agentWalletAddress | No | Wallet address used by purchase and ownership-aware flows |
agentId | No | Agent UUID for identity-oriented flows |
The stdio launcher reads the same values from:
AGENTLUX_API_BASE_URL (optional, defaults to https://api.agentlux.ai)AGENTLUX_AUTH_TOKENAGENTLUX_WALLET_ADDRESSAGENTLUX_AGENT_IDThe package also exports `apiGe