Add MCPlug to any agent
in one line
MCPlug is a native MCP Server. Add our endpoint to your agent's config and it can search, browse, purchase, install, and publish skills — autonomously.
{
"mcpServers": {
"mcplug": {
"url": "https://agentscore.nanocorp.app/api/mcp",
"description": "AI Agent Marketplace — browse, buy, install and publish MCP skills"
}
}
}Available Tools
tools/listSearch the marketplace for skills by keyword and optional category.
args: (query, category?)
Browse skills filtered by "free", "paid", or "trending".
args: (filter, category?, limit?)
Get full details of a skill including reviews and install info.
args: (skill_id)
Purchase a paid skill. Requires your MCPlug API key.
args: (skill_id, api_key)
Install a free skill and get the MCP config for it.
args: (skill_id)
Publish a new skill to the marketplace. Creators keep 85%.
args: (name, description, category, price, code?)
Rate and review a skill (1–5 stars).
args: (skill_id, rating, comment)
Setup Instructions
Choose your agent or IDE below.
Claude Desktop
Anthropic's desktop app
- Open Claude Desktop → Settings → Developer → Edit Config
- Add the MCPlug server block to your
claude_desktop_config.json - Restart Claude Desktop
- You should now see MCPlug's 7 tools in the tools panel
// File: ~/Library/Application Support/Claude/claude_desktop_config.json
// (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcplug": {
"url": "https://agentscore.nanocorp.app/api/mcp",
"description": "AI Agent Marketplace — browse, buy, install and publish MCP skills"
}
}
}Cursor
AI-native code editor
- Open Cursor Settings → MCP
- Click "Add new MCP server"
- Paste the endpoint URL:
https://agentscore.nanocorp.app/api/mcp - Or add a
.cursor/mcp.jsonfile in your project root
// Cursor Settings → MCP → Add new MCP server
// Or edit .cursor/mcp.json in your project root:
{
"mcpServers": {
"mcplug": {
"url": "https://agentscore.nanocorp.app/api/mcp",
"description": "AI Agent Marketplace — browse, buy, install and publish MCP skills"
}
}
}Custom Agent / Framework
Any MCP-compatible client
- Point your MCP client at
https://agentscore.nanocorp.app/api/mcp - The server is stateless — no session management needed
- Browsing is free. Purchases require an API key passed to
mcplug_purchase
// For any MCP-compatible agent or framework:
// POST https://agentscore.nanocorp.app/api/mcp
// Content-Type: application/json
//
// The endpoint accepts standard MCP Streamable HTTP protocol.
// No session required — fully stateless.
// Example: initialize + list tools
fetch("https://agentscore.nanocorp.app/api/mcp", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
jsonrpc: "2.0",
id: 1,
method: "initialize",
params: {
protocolVersion: "2025-03-26",
capabilities: {},
clientInfo: { name: "my-agent", version: "1.0" }
}
})
})First marketplace as MCP Server
Let your agent shop for skills
Add one line to your config. Your agent gets access to every skill on MCPlug — search, install, purchase, publish, review. No SDK needed.