Using Servers — Complete Guide
AgenticMarket allows you to install Servers directly into your coding assistant. Once installed, your AI agent can use them automatically when relevant, no copy-pasting, no switching tabs, no manual API calls.
This guide walks you through everything from signing up to making your first server call using AgenticMarket.
For a shorter setup path, use Quickstart. For command-level CLI details, see the CLI Installation doc.
What is a server?
A server (MCP Server) is a tool your AI agent can use. Think of it like giving your AI assistant a new ability, ability to read a webpage, check a domain, fetch live data, or anything else a server provides.
You install servers once. After that your agent discovers and calls them automatically based on what you ask it to do.
Step 1 — Create your account
Go to agenticmarket.dev and sign up. You will receive a verification email — confirm it before continuing.
Once verified, sign in and you will land on your dashboard.

Step 2 — Free Platform Access
All MCP servers on AgenticMarket are 100% free to browse, install, and invoke. There are no credit packages, per-call charges, or subscription tiers.
You do not need a credit card or billing setup. Once you create an account, you receive full access to install and use any verified MCP server in the registry.
Zero platform fees: Every tool call is routed at $0.00. No trial limits, wallet top-ups, or balance minimums required.
Step 3 — Get your API key
Your API key is how the CLI and your IDE authenticate your account.
- Go to Dashboard → API Key
- Click Generate Key
- Copy your key immediately — it is only shown once
Your key looks like this:
am_live_xxxxxxxxxxxxxxxxxxxx
If you lose it, go back to the same page and generate a new one.
See Authentication for key handling and security best practices.

Step 4 — Install the CLI
Open your terminal and run:
bashnpm install -g agenticmarket
Verify it installed:
bashagenticmarket --version
You can also use the short alias amkt for any command:
bashamkt --version
Step 5 — Connect your account
bashagenticmarket auth am_live_xxxxxxxxxxxxxxxxxxxx
Replace the key with yours. This saves your credentials locally so all future commands work automatically.
Step 6 — Find a server to install
Browse available servers at agenticmarket.dev/servers.
To understand category and listing quality requirements from the creator side, see Server Registry.
Each server page shows:
- What the server does
- What tools it provides to your agent
- The price per call
- The install command pre-filled for you
Optional but recommended — Validate in MCP Playground first
Before installing a server, run a quick endpoint check in the MCP Playground. It validates MCP handshake, tool discovery, schema output, and common auth mismatches.
If a server does not respond correctly there, fix that first and then install.

Step 7 — Install a server
Copy the install command from the server page, or run:
bashagenticmarket install username/server-name
For example:
bashagenticmarket install agenticmarket/web-reader
The CLI will ask which IDEs to install to — confirm your choice.
? Install to which IDEs?
✔ VS Code
✔ Cursor
✔ Claude Desktop
✔ Claude Code
✔ Windsurf
✔ Gemini CLI
✔ Zed
✔ Cline (VS Code ext)
✔ Codex
✔ Antigravity

That is it. No config files to edit manually.
Step 8 — Start using the server
Open VS Code, Cursor, Claude Desktop, Windsurf, Zed, or your supported IDE. Your IDE automatically detects the new server — no restart required for most IDEs like VS Code.
The server's tools appear in your agent's tool picker. You can now ask your agent to use them naturally:
"Read the content of https://example.com and summarise it"
"Check if this domain is reachable"
"Fetch the RSS feed from this blog"
Your agent will discover and call the right tool automatically.

Managing your servers
See all installed servers:
bashagenticmarket list
Remove a server:
bashagenticmarket remove server-name
Check your account:
bashagenticmarket whoami
Your dashboard
Your dashboard shows:
- Overview — account plan (FREE), total invocations, active API key
- Installed Servers — all servers currently installed on your account
- Usage History — a full timestamped log of every server and tool invocation
- API Key — manage and rotate your authentication keys
Fair use & reliability
AgenticMarket is completely free for individual developers and teams. To ensure high availability and prevent platform abuse across all connected upstream MCP servers:
- Invocations are subject to standard generous rate limits per account.
- Upstream MCP endpoints are probed continuously to ensure you only call healthy, active servers.
- If a server encounters an upstream error, the proxy returns a clear JSON-RPC error payload to your AI agent.
Troubleshooting
Server installed but tools not showing in VS Code
VS Code initialises MCP servers automatically — no restart needed. If tools are not showing, check that GitHub Copilot is active and agent mode is enabled in your VS Code settings.
For deeper diagnostics, run the endpoint through MCP Playground.
agenticmarket: command not found
Run npm install -g agenticmarket again and make sure your npm global bin directory is in your PATH.
Got an error saying invalid API key
Go to dashboard/api-keys and regenerate your key, then run agenticmarket auth <new-key> again.
Not sure which server to start with
Browse agenticmarket.dev/server — servers published by AgenticMarket are a good starting point as they are verified and simple to use.
Need help? Contact us at support@agenticmarket.dev or visit our contact page.
If setup worked but calls are failing, start with these high-frequency MCP error guides.
AgenticMarket