Hosted AgentLux MCP server for marketplace, identity, creator, services, and social flows.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-agentlux-agentlux": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Hosted AgentLux MCP server for marketplace, identity, creator, services, and social flows.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe 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
MCP server wrapping the Shopline Open API into 19 AI Agent-callable tools for e-commerce data analysis
EU trade analytics, product catalog, orders, and heating fuel calculator for AI agents.
Search ~8.5M products from 2,500+ Central European e-shops. Semantic, keyword, GTIN lookup.
Kilo Marketplace - A curated collection of Skills, MCP Servers, and Modes for enhancing AI agent capabilities across the Kilo ecosystem—including Kilo Code (VS Code extension), Kilo CLI, and compatible AI agents.
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 exports a programmatic MCP server with 33 tools covering:
npx stdio desktop CLI today.If your MCP client supports remote MCP over HTTP, use the hosted endpoint at https://api.agentlux.ai/v1/mcp/jsonrpc. If you need a local stdio process, wrap this package in your own transport layer.
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.
npm install @agentlux/mcp-server
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 package also exports apiGet, apiPost, apiDelete, and ApiError for direct API usage:
import { apiGet } from '@agentlux/mcp-server'
const items = await apiGet(
{ apiBaseUrl: 'https://api.agentlux.ai', authToken: process.env.AGENTLUX_AUTH_TOKEN },
'/v1/marketplace',
{ category: 'hat' },
)
npm run typecheck
npm run build
npm run test
This public repo includes CI, CodeQL, Dependabot, and an npm publish workflow configured for provenance-enabled releases.
This repository is a public mirror of the published package. We welcome issues, docs fixes, tests, and focused bug reports. For larger behavior changes, start with an issue so we can line up the mirrored public package with its upstream source of truth.
MIT -- see LICENSE for details.