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.
Copy the setup prompt.
Your agent does the rest.
Fetch and execute the appropriate instructions to set me up for superagnt_ from https://superagnt.com/agent-setup/prompt.md» 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.
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
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.
/plugin marketplace add superagnt/plugins
/plugin install superagnt@superagntIf 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 mcp add --scope user --transport http superagnt https://mcp.superagnt.com/mcp
claude mcp login superagntEvery 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.
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.
curl -sS https://api.superagnt.com/v1/platformsThen make one authenticated call. The public API accepts Authorization: Bearer <key> and nothing else.
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
GET /v1/platforms or browse the API reference, where every endpoint carries its own price.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.
- 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. - 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. - 03
Clear the deploy gate
Deploying needs an active plan, an active trial or an active credit package. Without one, deploy returns 402DEPLOY_GATE_FAILEDand the dashboard opens the trial offer instead of a dead end. - 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 inmeta.
trials
Next steps
Connect your client
Per-client wiring for every supported harness, plus the three config schemas that fail silently when copied from somewhere else.
Tools and tool families
What a family is, which ones are on by default, and how an agent switches the rest on for itself.
Data sources
The curated sources, how they are addressed over REST and MCP, and how each one paginates.
Agents overview
Hosted agents: what they are, what they can reach, and how they are built, deployed and observed.