The world’s first open-source MCP monetization platform, to quickly create and sell your own MCP server in just minutes. | XPack 是全球首个开源 MCP 交易平台,帮助你在10分钟内快速搭建自己的 MCP 商店并立刻开始销售 MCP 服务。
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"xpack-mcp-marketplace": {
"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.
XPack is the world’s first open-source MCP marketplace, to quickly create and sell your own MCP services in just minutes.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
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 developer-tools / ecommerce
Copy/paste detector for programming source code, supports 223 formats. AI-ready with token-efficient reporter, skill and MCP server.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Security Weekly
Get CVE alerts and security updates for XPack MCP Marketplace and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
English | Français | Deutsch | Español | 日本語 | 한국어 | 繁體中文 | 简体中文
XPack is the world’s first open-source MCP marketplace, to quickly create and sell your own MCP services in just minutes.
✨ With XPack, you can:
Everything is open-source and licensed under Apache 2.0 — ready for commercial use.
😍 Deploying XPack is incredibly simple. With just one command line, you can deploy your MCP Market in 10 minutes.
curl -sSO https://xpack.ai/install/quick-start.sh; bash quick-start.sh
XPack-MCP-Market requires the following services (self-hosted or containerized):
| Component | Minimum Version |
|---|---|
| MySQL | ≥ 5.7.x |
| Redis | ≥ 6.2.x |
| RabbitMQ | ≥ 4.0 |
Ensure these services are available and properly configured before running the backend.
😍 Deploying XPack is incredibly simple. With just one command line, you can deploy your MCP Market in 10 minutes.
curl -sSO https://xpack.ai/install/quick-start.sh; bash quick-start.sh
To install XPack-MCP-Market using this method, you need to have Docker and Docker Compose installed.
docker-compose.yml filevi docker-compose.yml
version: '3'
services:
xpack-mysql:
image: mysql:8.0.37
privileged: true
restart: always
container_name: xpack-mysql
hostname: xpack-mysql
command:
- "--character-set-server=utf8mb4"
- "--collation-server=utf8mb4_unicode_ci"
ports:
- "33306:3306"
environment:
- MYSQL_ROOT_PASSWORD=mysql_ZTdhRB
- MYSQL_DATABASE=xpack
volumes:
- /var/lib/xpack/mysql:/var/lib/mysql
networks:
- xpack
xpack-mcp-market:
image: xpackai/xpack-mcp-market
container_name: xpack-mcp-market
privileged: true
restart: always
networks:
- xpack
ports:
- "8000:80" # Map port 8000 of the container to port 80 of the
... [View full README on GitHub](https://github.com/xpack-ai/XPack-MCP-Marketplace#readme)