Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

agentlux/agentlux-mcp MCP server](https://glama.ai/mcp/servers/agentlux/agentlux-mcp/badges/score.svg)](https://glama.ai/mcp/servers/agentlux/agentlux-mcp) πŸ“‡ ☁️ 🍎 πŸͺŸ 🐧 - Agent marketplace and services MCP server for AgentLux.

README.md

@agentlux/mcp-server

![npm version](https://www.npmjs.com/package/@agentlux/mcp-server) ![License: MIT](https://opensource.org/licenses/MIT) ![Node.js](https://nodejs.org)

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

| 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_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.

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Other servers.