loading…
Search for a command to run...
loading…
Enables discovery and automatic installation of MCP servers via mcpmarket.com integration. Searches repositories, scrapes GitHub READMEs for configuration detai
Enables discovery and automatic installation of MCP servers via mcpmarket.com integration. Searches repositories, scrapes GitHub READMEs for configuration details, and provides one-click installation to MCP clients.
AI Agent Auto-Install: Point your agent to this repo and say "install mcp-mcpmarket" — it will read this README, detect your MCP client (Kilo/Claude Desktop), and configure itself automatically.
If you're an AI agent installing this for a user:
# Detect MCP client and auto-configure
git clone https://github.com/Xzeroone/mcp-mcpmarket.git /tmp/mcp-mcpmarket
cd /tmp/mcp-mcpmarket
# Check if Kilo config exists
if [ -f ~/.config/kilo/kilo.jsonc ]; then
# Add to Kilo config (local build)
npm install && npm run build
echo '{
"mcp": {
"mcpmarket": {
"type": "local",
"command": ["node", "'$(pwd)'/dist/index.js"],
"enabled": true
}
}
}' >> ~/.config/kilo/kilo.jsonc
fi
{
"mcpServers": {
"mcpmarket": {
"command": "npx",
"args": ["-y", "mcp-mcpmarket"]
}
}
}
git clone https://github.com/Xzeroone/mcp-mcpmarket.git
cd mcp-mcpmarket
npm install
npm run build
Then configure your MCP client:
Kilo (Recommended)
// ~/.config/kilo/kilo.jsonc
{
"mcp": {
"mcpmarket": {
"type": "local",
"command": ["node", "/path/to/mcp-mcpmarket/dist/index.js"],
"enabled": true
}
}
}
Claude Desktop
// ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcpmarket": {
"command": "node",
"args": ["/path/to/mcp-mcpmarket/dist/index.js"]
}
}
}
| Tool | Description |
|---|---|
mcpmarket_search |
Search MCP servers by keyword |
mcpmarket_detail |
Full details + GitHub README scrape |
mcpmarket_trending |
Top/trending servers |
mcpmarket_categories |
List all categories |
mcpmarket_browse |
Browse servers in a category |
mcpmarket_skills |
Search agent skills |
mcpmarket_install |
Install an MCP server to Kilo config (by slug or manual command) |
raw.githubusercontent.commcpmarket_install tool writes directly to your Kilo kilo.jsonc configThe mcpmarket_install tool supports two modes:
mcpmarket_install({ slug: "firecrawl" })
Automatically fetches the server details and extracts the correct install command from GitHub.
mcpmarket_install({ name: "my-server", command: ["npx", "-y", "@some/mcp-server"] })
Use when you already know the exact command.
| Parameter | Required | Description |
|---|---|---|
slug |
Yes (or command) | Server slug from mcpmarket.com. Auto-fetches install command. |
name |
No | Config entry name. Defaults to server slug. |
command |
Yes (or slug) | Manual command array if slug not provided. |
environment |
No | Environment variables to set. |
global |
No | Install to global config (default: true). |
npm install
npm run build
node dist/index.js
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"mcp-mcpmarket": {
"command": "npx",
"args": []
}
}
}