list

A command that lists integrations available in a connector platform, such as Notion, Slack, GitHub, or email services.

In plain words
What is it for?
Use it to review available connectors, see whether they use OAuth, an API key, or another login method, and choose a connector to scaffold.
Why use it?
It shows which services can be connected and what kind of authentication each one requires before you add an integration.

Command

Part of the connector-platform plugin — 1 skill, 4 commands, 1 MCP server shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/danielsalles/connector-platform-plugin/list
Clone the repo
git clone --depth 1 https://github.com/danielsalles/connector-platform-plugin

Or install connector-platform, the plugin that ships this one along with the rest of its 1 skill, 4 commands, 1 MCP server.

Per session 14 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 368 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00014 $0.00368
Opus 5 $0.00007 $0.00184
Sonnet 5 $0.00003 $0.00074
Haiku 4.5 $0.00001 $0.00037

Measured 2d ago against content hash a4c588d72990, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

list scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

`GET ${CONNECTOR_BASE_URL}/v1/connectors` with `Authorization: Bearer ${CONNECTOR_API_KEY}`. Use Bash tool with `curl -sS`.
commands/list.md · 40 lines

What it actually says

The user wants to see which integrations are available to scaffold.

Step 1 — Read credentials

Read .env.local from project root. Need CONNECTOR_API_KEY and CONNECTOR_BASE_URL. If missing, reply:

Not logged in. Run /connector login <cpt_token> first.

Stop.

Step 2 — Fetch the catalog

GET ${CONNECTOR_BASE_URL}/v1/connectors with Authorization: Bearer ${CONNECTOR_API_KEY}. Use Bash tool with curl -sS.

The response is { data: Connector[], total } where each Connector has slug, namespace, description, category, iconUrl, auth_type ("oauth2" | "api_key" | "personal_token" | null).

Step 3 — Display

Render as a markdown table grouped by category. Include the auth_type column so the user knows whether they'll need BYO OAuth before going to production:

| Slug | Auth | Description |
|------|------|-------------|
| github | oauth2 | GitHub REST API — repos, issues, PRs |
| notion | oauth2 | Notion API — pages, databases |
| resend | api_key | Email delivery |
| ...    | ...    | ...         |

At the bottom, hint:

Run /connector add <slug> to scaffold a connection (e.g. /connector add notion). Connectors with auth=oauth2 use our shared OAuth app by default. For production, configure your own at /builder/oauth-apps/.

If the catalog is empty, say so.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 40 lines · 14 tokens per session scan A a4c588d72990

Subscribe to this mod's changes

list is a command published in the GitHub repository danielsalles/connector-platform-plugin (0 stars, last pushed 4mo ago), licensed MIT. It adds 14 tokens to every session and 368 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.