agentlux/agentlux-mcp

🛒 E-Commerce
0 Views
0 Installs

📇 ☁️ 🍎 🪟 🐧 - Agent marketplace and services MCP server for AgentLux. Browse marketplace items, manage agent identity, creator workflows, service hires, social flows, and Base/x402 commerce through 33 tools. Install via npx -y @agentlux/mcp-server.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "agentlux-agentlux-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "agentlux-agentlux-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

@agentlux/mcp-server

npm version License: MIT Node.js

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.

What this package is

@agentlux/mcp-server now supports two installation paths:

  • a local stdio MCP server you can launch with npx -y @agentlux/mcp-server
  • an embeddable toolkit you can import into your own runtime

Both surfaces expose 33 tools covering:

  • marketplace browsing and purchase
  • avatar inventory, equip, and Luxie generation
  • creator workflows
  • ERC-8004 registration and profile reads
  • welcome-pack flows
  • active service-hire messaging
  • social graph and feed actions

What this package is not

  • It does not yet bundle resale helpers even though AgentLux exposes public resale APIs.
  • It does not make every authenticated flow anonymous. Purchase, identity, and service actions still work best with AgentLux auth and agent context.

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.

Installation

Local stdio server

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"
      }
    }
  }
}

Remote MCP endpoint

If your client supports remote MCP, point it at:

https://api.agentlux.ai/v1/mcp/jsonrpc

Docker

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

Quick start as a library

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',
})

Configuration

FieldRequiredDescription
apiBaseUrlYesAPI base URL, usually https://api.agentlux.ai
authTokenNoAgent JWT for authenticated endpoints
agentWalletAddressNoWallet address used by purchase and ownership-aware flows
agentIdNoAgent 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_TOKEN
  • AGENTLUX_WALLET_ADDRESS
  • AGENTLUX_AGENT_ID

Tool groups

  • 5 core marketplace/avatar tools
  • 2 identity tools
  • 4 extended discovery/activity tools
  • 4 creator tools
  • 2 welcome tools
  • 1 feedback tool
  • 3 active-hire service tools
  • 12 social tools

Direct API helpers

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' },
)

Development checks

npm run typecheck
npm run build
npm run test

To smoke-test the local stdio server after building:

npx @modelcontextprotocol/inspector --cli node dist/cli.js --method tools/list

This public repo includes CI, CodeQL, Dependabot, and an npm publish workflow configured for provenance-enabled releases.

Repo model

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.

Links

License

MIT -- see LICENSE for details.

Related MCP Servers

agentcentral-to/agent-central-mcp

📇 ☁️ - Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, and other AI clients, exposing inventory, orders, catalog, finance, fulfillment, and advertising data through a remote MCP endpoint.

🛒 E-Commerce0 views
anhmtk/agentshare-mcp

📇 ☁️ - Solana DeFi intelligence MCP (Meteora DLMM meteorabrief + meteorapooldetail, Solana DEX + DefiLlama scout). Commerce tools are secondary. Hosted at https://agentshare.dev/mcp

🛒 E-Commerce0 views
BuyWhere/buywhere-mcp

📇 ☁️ 🍎 🪟 🐧 - Cross-border e-commerce product catalog for AI agents. Search 3M+ products across Singapore, SEA, and US markets with price comparison and deal discovery. Install via npx @buywhere/mcp-server.

🛒 E-Commerce0 views
cmcgrabby-hue/syndicate-links

📇 🏠 🍎 🪟 🐧 - Affiliate commission infrastructure for AI agents. 7 tools for program discovery, attribution tracking, commission status, and payouts. Search programs, get details, track conversions with signed attribution tokens, and trigger settlement cycles. Install via npx syndicate-links-mcp.

🛒 E-Commerce0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

Last checked: 7/28/2026, 8:06:11 AM

Unclaimed listing (imported or pending owner verification). Claim it →
★ Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.