fortrabbit-api-access

fortrabbit-api-access is a skill for Claude Code from fortrabbit/agent-skills. It costs 223 tokens per session (4,080 once invoked), scanned C, original, MIT.

A connection guide for using fortrabbit's tools from an agent, MCP client, or script. MCP is a standard way for an AI agent to call an external service.

In plain words
What is it for?
Use it to connect an agent to the fortrabbit MCP server, call its REST API, install access with OAuth, or troubleshoot authorization failures.
Why use it?
It helps choose between browser-based sign-in and an API token, and explains how to resolve authentication errors such as an invalid token.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Claude Code; mentions Codex.

Good fit Use it to connect an agent to the fortrabbit MCP server, call its REST API, install access with OAuth, or troubleshoot authorization failures.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/fortrabbit/agent-skills/fortrabbit-api-access
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.

Any agent
npx skills add fortrabbit/agent-skills --skill fortrabbit-api-access
Clone the repo
git clone --depth 1 https://github.com/fortrabbit/agent-skills

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fortrabbit-api-access

README.md
[![agentmods](https://agentmods.dev/badge/skills/fortrabbit/agent-skills/fortrabbit-api-access/github.svg)](https://agentmods.dev/skills/fortrabbit/agent-skills/fortrabbit-api-access)
Your own site
<a href="https://agentmods.dev/skills/fortrabbit/agent-skills/fortrabbit-api-access"><img src="https://agentmods.dev/badge/skills/fortrabbit/agent-skills/fortrabbit-api-access/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for fortrabbit-api-access

Your own site · 80×15
<a href="https://agentmods.dev/skills/fortrabbit/agent-skills/fortrabbit-api-access"><img src="https://agentmods.dev/badge/skills/fortrabbit/agent-skills/fortrabbit-api-access.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 223 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,080 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00223 $0.04080
Opus 5 $0.00112 $0.02040
Sonnet 5 $0.00045 $0.00816
Haiku 4.5 $0.00022 $0.00408

Measured 4d ago against content hash 4756bcdbfdc7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade C, and why

fortrabbit-api-access scanned grade C with 2 findings 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 4d 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.

Harvests environment variableshighData exfiltration

Enumerating or grepping the environment for keys collects credentials unrelated to what the mod says it does.

printenv FORTRABBIT_API_TOKEN

Makes network callslowCapability

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

`curl` is used for REST examples. Designed for Claude Code; works with any
skills/fortrabbit-api-access/SKILL.md · 342 lines

How it starts

The opening of the file, as written. The whole thing — 342 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You connect an agent to fortrabbit so it can use the MCP server (/mcp) or the Public API (/v1) on the user's behalf.

There are two ways in. Pick by what the user is connecting:

Situation Path
An MCP client (Claude Code, Codex, Cursor) needs the fortrabbit MCP server OAuth install — Step 1. No token, no secret handling.
A script, CI job, or curl needs the /v1 REST API Public API token — Step 3.
An MCP client with no OAuth support Public API token — Step 3, configured as a Bearer header.
The MCP server has no tool for the operation frbit CLI — Step 5. Fall back to a token and curl only if the CLI cannot be installed.

Default to OAuth. Only reach for a token when OAuth cannot apply.


Step 1 — Install the MCP server via OAuth (preferred)

One command. The client opens a browser, the user approves, and the client stores the credentials itself. The agent never sees, handles, or stores a token in this flow.

Claude Code:

claude mcp add --transport http fortrabbit https://mcp.fortrabbit.com/mcp

OpenAI Codex — Codex does not publish a Client ID Metadata Document, so it must be given the client ID explicitly:

codex mcp add fortrabbit --url https://mcp.fortrabbit.com/mcp --oauth-client-id https://api.fortrabbit.com/.well-known/oauth-client/codex

After running it, tell the user to complete the browser approval, then verify by calling the get_you tool — it returns the account the connection authenticates as.

What happens under the hood (useful for diagnosing, not for reimplementing):

  • The first unauthenticated request gets a 401 carrying WWW-Authenticate: Bearer resource_metadata="https://api.fortrabbit.com/.well-known/oauth-protected-resource/mcp". The client follows that to the discovery documents and starts the flow.
  • Authorization code + PKCE (S256), no client secret, single mcp scope.
  • The server issues a short-lived opaque frbit-mcp-at- access token (1 hour) and a rotating frbit-mcp-rt- refresh token. The client refreshes silently.
  • There is no dynamic client registration. Clients identify themselves with a Client ID Metadata Document. Do not look for or configure a registration_endpoint — its absence is deliberate.

Never try to mint, read, or hand-edit frbit-mcp-at- / frbit-mcp-rt- tokens. They are opaque, short-lived, and managed by the client. If auth breaks, re-run the install command rather than manufacturing a credential.

To disconnect, remove the server in the client (e.g. claude mcp remove fortrabbit). That drops the credentials the client stored, but does not revoke the grant server-side. Server-side revocation (DELETE /you/connected-apps/{publicId}) is session-authenticated — it needs a logged-in browser session and is not reachable with an API token, so neither an agent nor curl can perform it. Direct the user to do it in the dashboard.


Read the full file on GitHub · 342 lines

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. 4d ago Changed · +42 lines · +65 tokens per session 4756bcdbfdc7
  2. 8d ago First seen · 300 lines · 158 tokens per session scan C 51412f78083d

Subscribe to this mod's changes

fortrabbit-api-access is a skill published in the GitHub repository fortrabbit/agent-skills (4 stars, last pushed 5d ago), licensed MIT. It adds 223 tokens to every session and 4,080 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it C with 2 findings (harvests environment variables, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories