✦ AgenticMarket — VS Code Extension
Browse, install, and manage MCP servers from AgenticMarket directly inside VS Code.
Features
- Sidebar marketplace — search and browse all AgenticMarket MCP servers
- One-click install — installs to
.vscode/mcp.json or global MCP config
- Detail view — full server page with docs, pricing, and metadata
- Installed section — collapsible list of your installed AgenticMarket servers
- Paid server support — set your API key to install pay-per-call servers
Quick Start
- Install this extension
- Click the ✦ icon in the activity bar
- Browse servers, click one, hit Install
- Open GitHub Copilot / Cursor — the tools are ready
Configuration
| Setting |
Default |
Description |
agenticmarket.apiKey |
"" |
Your am_live_xxxx API key for paid servers |
agenticmarket.installScope |
workspace |
Install to workspace or global config |
Get your API key at agenticmarket.dev/dashboard/api-keys
How Install Works
Installing a server writes this to your .vscode/mcp.json:
{
"servers": {
"creator/server-name": {
"type": "stdio",
"command": "npx",
"args": ["-y", "agenticmarket", "proxy", "creator/server-name"],
"gallery": "https://marketplaceapi.agenticmarket.dev",
},
},
}
The npx agenticmarket proxy command routes tool calls through the AgenticMarket proxy, which handles auth, billing, and logging.
Building
npm install
npm run compile
# or for development:
npm run watch
Publishing
npm install -g @vscode/vsce
vsce package # creates .vsix
vsce publish # publish to VS Code Marketplace