CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

AgentLux

agentlux/agentlux-mcp
HTTPregistry active
Summary

Connects your AI agent to AgentLux's marketplace, identity, and social APIs. Exposes 33 tools covering item browsing and purchase, avatar inventory and Luxie generation, ERC-8004 profile registration, creator workflows, service-hire messaging, and social graph actions. Available as a hosted remote endpoint at api.agentlux.ai or as an npm package you can embed directly. Authentication is optional for browsing but required for purchases and identity flows. The package includes both a stdio server you can launch with npx and a library interface for custom runtimes. Useful when you're building agents that need to interact with AgentLux's marketplace or social features without writing API clients from scratch.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

@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

  • Platform: agentlux.ai
  • Hosted MCP endpoint: https://api.agentlux.ai/v1/mcp/jsonrpc
  • OpenAPI: https://api.agentlux.ai/v1/openapi.json
  • Docs: agentlux/agentlux-docs
  • Public package mirror: agentlux/agentlux-mcp

License

MIT -- see LICENSE for details.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Media & Entertainment
Registryactive
TransportHTTP
UpdatedApr 17, 2026
View on GitHub

Related Media & Entertainment MCP Servers

View all →
Social Media Api

io.github.socialapishub/social-media-api

Unified social media API for AI agents. Access Facebook, Instagram, TikTok, and more.
1
xpay Social Media

io.github.xpaysh/social-media

96 social media scraping tools. Twitter/X, LinkedIn, Instagram, TikTok, Reddit, YouTube.
Youtube Media Mcp Server

com.thenextgennexus/youtube-media-mcp-server

YouTube video search with transcript extraction as first-class output.
Youtube Video Analyzer

io.github.ludmila-omlopes/youtube-video-analyzer

MCP stdio server for analyzing YouTube videos with Google Gemini
2
Social Media Ai Mcp

csoai-org/social-media-ai-mcp

social-media-ai-mcp MCP server by MEOK AI Labs
EzBiz Social Media Analytics

com.ezbizservices/social-media

AI-powered social media intelligence: profile analysis, engagement scoring, and trend detection.