ThumbGate vs Arcade.dev

5 min read · For teams evaluating AI agent security, auth, and guardrail layers

TL;DR: Arcade is a cloud-hosted auth proxy built to delegate user identities (OAuth) to SaaS APIs for production-facing enterprise agents. ThumbGate is a local-first, feedback-driven pre-action check firewall built to prevent coding agents (Claude Code, Cursor, Cline) from making filesystem mistakes or breaking builds. Arcade secures API identity delegation; ThumbGate secures local tool-call execution.

Different Layers, Different Goals

Arcade recently announced a $60M Series A (led by SYN Ventures with Morgan Stanley and Wipro) to address the authorization accountability gap in production AI agents. While both products focus on the AI agent security space, they are designed for completely separate loops.

If you're building a production agent that needs to draft emails, update Salesforce records, or post to Slack on behalf of real users, Arcade's token delegation is the industry standard. If you are a developer using Claude Code or Cursor and want to make sure the agent doesn't delete your files, leak API keys, or run unsafe commands, ThumbGate's local PreToolUse firewall is built for you.

Side-by-Side Comparison

DimensionArcade.devThumbGate
Primary Value Prop Secure identity/token delegation and auth propagation for production agents. Local pre-action checks preventing coding-agent mistakes and directory destruction.
Integration layer Cloud auth proxy between agent application and downstream SaaS APIs. Out-of-process PreToolUse hook intercepting tool calls at the agent runtime boundary (Claude Code / Cursor / Codex / Gemini / Amp / Cline / OpenCode).
Deployment mode Cloud-hosted service or self-hosted gateway. Local-first, runs on the developer's machine with SQLite/JSON persistence.
Identity & Auth Model OAuth 2.0 user identity propagation. Policy-based rules derived from human feedback (thumbs-down rules) and Thompson Sampling.
Primary target tools SaaS APIs (Slack, Salesforce, GitHub, Gmail, Jira). Local system tools (filesystem write, terminal execute, git push, package install).
MCP Integration Authored the MCP authorization specification for API token delegation. Operates as a local MCP server controlling local tool execution permissions.
Setup Friction Requires configuring OAuth providers, redirect URIs, and deploying API proxy. Installs in 30 seconds via npx thumbgate init with zero infrastructure.

Complementary, Not Conflicting

Because they operate at different layers, ThumbGate and Arcade are complementary:

Get Started with Local Guardrails

Install ThumbGate locally in one command:

npx thumbgate init

Then give thumbs-up/down feedback to let the firewall learn your boundaries. Core CLI + local hooks are MIT licensed.

View on npm View on GitHub