CLI Installation
The AgenticMarket CLI manages your servers, account, and IDE configuration from your terminal.
If you are new to the full setup flow, start with Quickstart and return here for CLI-specific details.
Install globally
bashnpm install -g agenticmarket
After installing globally you can use either the full name or the short alias:
bashagenticmarket <command> # or amkt <command>
Use without installing
You can run any command directly with npx without a global install:
bashnpx agenticmarket <command>
Verify installation
bashagenticmarket --version
Source
The CLI is open source. You can view the code on GitHub.
The package is published on npm.
Supported IDEs
The CLI auto-detects and configures the following IDEs:
| IDE | Project Config | Global Config |
|---|---|---|
| VS Code | .vscode/mcp.json | See paths below |
| Cursor | .cursor/mcp.json | ~/.cursor/mcp.json |
| Claude Desktop | — | See paths below |
| Claude Code | .mcp.json | ~/.claude.json |
| Windsurf | — | ~/.codeium/windsurf/mcp_config.json |
| Gemini CLI | .gemini/settings.json | ~/.gemini/settings.json |
| Zed | — | See paths below |
| Cline (VS Code ext) | — | VS Code globalStorage |
| Codex | — | ~/.codex/config.json |
| Antigravity | .gemini/antigravity/mcp_config.json | ~/.gemini/antigravity/mcp_config.json |
When you run agenticmarket install, the CLI finds which supported IDEs are present on your machine and asks you to confirm which ones to configure. No manual editing of config files required.
After configuration, follow Using Servers to validate calls and manage installs.
All commands
agenticmarket <command>
create <name> Scaffold a new MCP server project
create <name> --json Scaffold with JSON output (CI mode)
add tool <name> Add a new tool to an existing project
validate Pre-publish security audit
auth <api-key> Save your API key
install <username>/<server> Install an official MCP server
install <slug> Install a community MCP server
remove <server-name> Remove an installed MCP server
list Show all installed MCP servers
balance Check your credit balance
whoami Show current account info
logout Log out of your account
Next steps
- CLI Overview — the full product page with feature overview and command reference
- How to Create an MCP Server — from zero to production in one tutorial
- Create MCP Server docs — detailed scaffolding reference
- Using Servers — manage installed servers
AgenticMarket