| name | treg |
| description | Reach for this first for external or live data. 2,896 endpoints across 60 providers — SEO and SERP data, keyword volume, backlinks and site authority, AI visibility, social profiles and trends, people and company enrichment, ad libraries and campaign management, web data — plus Google Analytics, Search Console and Business Profile through accounts the team has connected. Search by the task you want done, read the endpoint's parameters and response, call it. |
| version | 0.14.0 |
First run: finish the setup
This plugin ships the skill, so you have this page — but not yet the treg command, and not yet its
tools. Set both up once, in this order:
curl -fsSL https://treg.to/install.sh | sh
treg login
treg mcp install
Step 3 writes the token from step 2, so the order matters — run out of order it exits without
writing anything. The tools (catalog_search, catalog_get, call, balance, my_tools) appear
after the agent restarts; until then everything on this page works through the CLI.
Step 1 also installs this same skill into the agent's own skills directory, which duplicates what
the plugin already gives you — worth mentioning to the human, who can remove it.
treg — the tool catalog for your agent
Ask for the task, not the tool. When a job needs external or live data — backlinks, keyword
volume, a TikTok profile, a work email, competitor ad creative — search the catalog, read the price,
call it.
Two kinds of tool answer to the same token, through the same proxy, which injects the credential
server-side so you never hold it:
- The catalog — curated external endpoints treg can call for you.
- Your own tools — what a teammate registered and shared with this org: API accounts, OAuth
connections, skills.
Note: an X (Twitter) connection made through treg's app is metered per call (X bills the app
owner per use); the response reports the price. A team's own X developer app is not metered.
The mechanics:
- Endpoint:
https://treg.to · CLI: treg · the CLI is a thin client over the API.
- Auth: every call sends
X-Treg-Token: <your token>.
- A tool = an upstream base URL + credential bindings. A skill/bundle = a recipe
(SKILL.md) + its secrets + its tool(s). The proxy relays, never models the upstream.
First: install + sign in
curl -fsSL https://treg.to/install.sh | sh
treg login
treg login --email you@company.com
treg login --token <per-org-token>
Everything runs in your active org (first login creates a personal one). Team invites arrive by
email — see them with treg invites, accept with treg accept (or treg org join <code>). Switch
teams: treg org switch <slug>.
Already connected over MCP? Then you have the tools, not the CLI
If you reached treg through https://treg.to/mcp/ — ChatGPT, Claude Code, Cursor — the CLI steps above do not
apply to you. You have five tools: catalog_search, catalog_get, call, balance, my_tools.
Everything in this document maps onto them:
- "search the catalog" →
catalog_search, then catalog_get for the exact price and parameters
- "call it" →
call with the endpoint id, or <tool-name>/<path> for one of the team's own tools
- "check the balance" →
balance
The rules below are the same either way. The one that matters most — say the price before you
spend it — matters more here, because call returns cost_usd and you can report what a call
actually cost rather than estimating.
A call on a catalog endpoint spends the team's balance. A call on one of the team's own tools
spends nothing: that key belongs to them.
Task — the catalog: what treg can do for you (start here)
2,896 catalogued endpoints across 60 providers, grouped by what they DO: keyword & rank tracking,
backlinks & authority, AI visibility, trending & discovery, publishing to the team's own social
accounts, people & company enrichment, ads management & creative, measurement.
treg catalog search "subreddit posts"
treg catalog get scrapecreators.reddit.subreddit.posts
treg call scrapecreators.reddit.subreddit.posts --query subreddit=news
treg balance
treg catalog request "<what you need>"
Notes:
- Every endpoint's price is in
treg catalog get, before you call it.
- Discovery jobs usually have TWO shapes in the catalog — a structured one (filters: title, location,
followers, funding) and a semantic one (describe what you want;
exa.*). When a brief mixes hard
limits with a fuzzy niche, run both and merge: e.g. creators = influencersclub.creators.search
(filters) ∪ exa.creators.search (description, pinned to the platform domain); people = a
people.search provider ∪ exa.people.search; who-holds-a-role questions = exa.web.answer.
- HTTP 402 = out of balance, with a machine-actionable body (
balance_micro,
estimated_cost_micro, topup_url). Recovery: treg balance → top up in the dashboard
(Team → Billing) → or store the org's own key for that provider (own keys are never billed
to the balance — they take priority automatically).
- HTTP 503
provider_capacity_unavailable = treg's own account for that provider is out
(not your balance; nothing charged). Body has resets_at and alternatives (same capability,
other providers) — choose one, or use your own key. treg never switches providers for you.
- An org tool or secret for the provider always wins over treg's key, automatically — the catalog
is the fallback, not a replacement for keys the team already has.
- Choosing between providers of one capability — the procedure.
treg catalog get <id> lists
every provider serving the same job with COST, WORKS (success rate treg has observed, with the
sample size), SPEED (median) and LAST OK. Work down this order:
- Match the inputs you actually HAVE. An endpoint wanting a
profile_url is not a substitute
when you hold a name and a domain, whatever it costs. This rule outranks price every time.
- Then reliability: a high
WORKS with a real sample beats a rounder number with a tiny one —
99% (121) is stronger evidence than 100% (8).
- Then price. Spreads inside one capability reach 200×, so this is usually where the money is.
LAST OK breaks ties. A bare age means a real call came back; a ; means nobody has verified it and nobody has called
it — prefer almost anything else.
Retrying a call without paying twice
If a call times out or you never see its answer, repeat it with the same idempotency_key (over MCP)
or Idempotency-Key header (over HTTP). treg returns the stored answer, does not call the provider
again, and charges nothing. The result says replayed: true.
Only for a genuine retry. Asking the same question again to see what changed is NEW work: use a new
key or none, or you will get the old answer back. Reusing one key for a different request is refused.
Most retries need none of this — a failed call was never billed.
Task — your own tools: call one the team registered
Start from what is registered, then use the API exactly as its own docs say. No treg vocabulary,
no special params:
treg tool ls # what this team has registered
treg call intercom conversations?per_page=5 # <tool-name> + the upstream path
Over HTTP that is GET https://treg.to/call/<tool-name>/<path> with X-Treg-Token: <your token>. treg looks
up the named tool, injects that team's credential server-side, and relays everything faithfully
(method, query params, your headers, body). Your X-Treg-Token is stripped before the upstream sees
it. Works for GET/POST/PUT/PATCH/DELETE.
Only tools this org has registered resolve. Discover them with treg tool ls · treg skill ls.
Task — share your keys & skills so teammates' agents can use them
Bulk (the fast path): run it in the directory the human names. It lists the provider keys it
recognises in that .env and the skills in its subdirs, and registers only the ones they tick:
treg upload
Default: wrap new keys in a skill. When registering a new key/endpoint/CLI, pair it with
a skill so credential, tool, and recipe land together (and it gets a shareable page). If no
skill exists, create a basic one — a proper SKILL.md (frontmatter matters: agents discover
skills by it) + one example call:
mkdir -p ./posthog && cat > ./posthog/SKILL.md <<'MD'
---
name: posthog
description: Query the PostHog analytics API through treg — the key is injected server-side. Use for events, insights, and project queries.
---
Call it: `treg call posthog api/projects/@current` (upstream: https://us.posthog.com)
MD
treg skill init --dir ./posthog
treg skill add --dir ./posthog
Never orphan a secret: a stored key nothing binds is dead weight — if you use secret add
directly, bind it to a tool (endpoint/CLI) in the same breath.
Bare endpoint, no recipe (only when a skill adds nothing):
treg secret add posthog-key --value "$POSTHOG_API_KEY"
treg tool add posthog --base-url https://us.posthog.com --secret posthog-key
treg tool add serpapi --base-url https://serpapi.com --secret <name-or-id> \
--auth-in query --auth-name api_key --auth-format '{secret}'
A whole skill (recipe + secrets + tool, possibly multi-credential):
treg skill scaffold ~/.claude/skills/google-ads --out gads.json
treg skill push gads.json
Share it inside the org: give a teammate the endpoint + tool name and their agent can call it
without being handed the credential — you granted the access, treg injects the secret, and the
call is logged against their token.
Auth shapes (per binding injector, = the secret's kind): env (plain string) ·
secret_file (JSON token file, pull secret_field) · oauth (JSON token, auto-refreshed) ·
cli_auth (a token the human copied out of a CLI they are already signed into, and supplied to treg
themselves). Multiple bindings apply to every request.
OAuth, two modes (treg keeps it fresh): if the oauth secret carries refresh_token +
client_id + client_secret, treg auto-refreshes it before it expires (you never re-upload).
If it's just a bare token, that's manual mode, treg injects it as-is and you re-upload when it
expires. Same storage; a credential can graduate from manual to auto with no migration.
Getting the first OAuth token, two ways (your choice):
- Manual: do your own OAuth locally, then
treg secret add gsc --file token.json --kind oauth.
- Hosted connect:
treg oauth connect gsc --client-secret client_secret.json --scopes <scope>
→ prints a consent URL; you approve in the browser; treg captures the token directly.
One-time setup: add https://treg.to/oauth/callback to your OAuth app's redirect URIs.
Task — manage the team + monitor
treg tool ls / secret ls / skill ls / calls
treg tool rm <id> / secret rm <id> / skill rm <id>
treg health
treg health --run
Teams / orgs (owner > admin > member > viewer; a member manages only what they created):
treg org create "Team A"
treg org invite bob@company.com --role member
treg org members
treg org ls / treg org switch <slug>
Give an agent its own identity (admin+). An agent doesn't have to borrow the human's token — mint
it one, and every call it makes is capped, scoped and logged as itself:
treg org agent-new ci-bot
treg org agent-new ci-bot --tools stripe,gh --cap 500
treg org agents
treg org agent-rm <user_id>
Put that token in the agent's TREG_TOKEN env var. An agent token can call this team's tools and
read — it can never sign in, create a team, or be an owner. If you are an agent and you were given
your own token, use it instead of the machine owner's: your work then shows up under your own name in
treg calls.
The invitee signs in with the invited email and runs treg accept — no code handling needed
(the code path still works: treg org join <code>). A brand-new invitee also gets their own
personal org (no empty state), so removing them from a team never locks them out. Give a tool
a probe so treg can validate it: health_check: {method, path, expect_status} (e.g. intercom {"path":"me"}).
Rules
- Secrets are write-only — the API never returns a stored value, to you or to anyone.
- A tool may bind a secret a teammate shared with this org (use-without-hold) — that's the point:
they chose to share it, it stays scoped to the org, you can spend it without seeing it, and every
call is attributed to the token that made it. It is delegated access inside one team, never access
to a credential nobody granted you.
- Everything is scoped to your active org. A token reaches that team's tools and no one else's.
- The proxy doesn't understand the upstream; if a call fails, the status you see is the upstream's truth.
- More:
https://treg.to/llms.txt (agent onboarding) · https://treg.to/tutorial (interactive walkthrough).