// getting started

Quickstart

Three ways in, one workspace behind all of them. Hand a single line to the agent you already run and it wires itself up. Point an MCP client at one endpoint. Or call the REST API with a workspace key. Pick the one that matches how you work; the data, the balance and the tools are the same either way.

01// the fastest path

Copy the setup prompt.
Your agent does the rest.

works with any agent+ 8 more
Fetch and execute the appropriate instructions to set me up for superagnt_ from https://superagnt.com/agent-setup/prompt.md
or follow the detailed setup instructions

» the base connection ships with the data tools already enabled, and the Claude Code route installs the plugin — MCP server plus skills — in one step. Nothing to switch on.

The agent fetches the served markdown at that URL, picks the branch that matches the client it is running in, writes the config, and runs the browser consent flow. Because the instructions are a live URL and not a snapshot, a client fix on our side repairs every copy of the line that was ever pasted.

Once it is connected, the doc tells the agent to make agnt_onboarding its first tool call. That is the tool that records what you want automated and hands back the platform brief, so the agent can tell you the handful of things worth doing first instead of reciting a catalog.

02// before you start

Before you start

You need a workspace, and then either an OAuth-capable MCP client or a workspace API key. Sign up at app.superagnt.com. Onboarding mints a Default key for the new workspace; you reveal that one, or create another, from the dashboard.

you can call on day zero

Every new signup starts with a $0.50 data balance that does not expire. It is small on purpose, but it is real money against real endpoints: you can make a paid call before you ever open the billing page. Failed calls cost nothing.
03// by hand

Connect a client by hand

On Claude Code the default route is the plugin. One install delivers the MCP connection and the superagnt_ skills together, so the agent gets the tools and the know-how to use them in the same move.

claude code · pluginbash
/plugin marketplace add superagnt/plugins
/plugin install superagnt@superagnt

If you would rather add the server on its own, the manual pair does the same connection without the skills. --scope user is not optional: the CLI defaults to project scope, which hides the server from every directory except the one you ran it in.

claude code · manualbash
claude mcp add --scope user --transport http superagnt https://mcp.superagnt.com/mcp
claude mcp login superagnt

Every other client has its own one-liner or config block. Connect your client has all of them, including the three whose config keys differ enough to fail silently when copied from another client.

04// rest

Call the REST API

Start with the catalog. GET /v1/platforms needs no credential at all and is the authoritative, always-current list of sources, endpoint counts and per-call prices.

the catalog · no key neededbash
curl -sS https://api.superagnt.com/v1/platforms

Then make one authenticated call. The public API accepts Authorization: Bearer <key> and nothing else.

one curated data callbash
export AGNTDATA_API_KEY="agnt_live_..."

curl -sS "https://api.superagnt.com/v1/data/linkedin/get-company-by-domain?domain=apple.com" \
  -H "Authorization: Bearer $AGNTDATA_API_KEY"

pricing

Per-call prices live in the catalog, not in this page. Read them from GET /v1/platforms or browse the API reference, where every endpoint carries its own price.
05// hosted agents

Deploy your first agent

The third path does not run on your machine at all. You describe the job to the Agnt Wizard in the dashboard, it builds an Agent, and the Agent runs on our infrastructure against the same workspace.

  1. 01

    Open the builder

    Go to app.superagnt.com and tell the Agnt Wizard what you want done. It drafts the Agent, its tools and its system prompt with you.
  2. 02

    Give the draft a real name and a system prompt

    Deploy refuses a draft still called "Untitled agent" and refuses an empty system prompt. Both come back as a 400 VALIDATION_ERROR naming which one is missing.
  3. 03

    Clear the deploy gate

    Deploying needs an active plan, an active trial or an active credit package. Without one, deploy returns 402 DEPLOY_GATE_FAILED and the dashboard opens the trial offer instead of a dead end.
  4. 04

    Watch it run

    A deployed Agent gets its own key, its own sessions and its own observability trail. Everything it spends lands in the same two organization wallets you were already reading in meta.

trials

Trials are card up front and run 7 days. An organization gets one, ever. On the Toolkit tiers the deploy entitlement is sold as the Agent Runtime module ($49/mo) rather than bundled into the base plan, so holding the plan alone still returns the gate with that module's offer attached.
06// next steps

Next steps