Satgate MCP Server

Why • Build • Features • Quick Start • Docs • Website • Blog

Remote serverstreamable-httpPython

What is the Satgate MCP server?

Satgate MCP server is a hosted integration for AI assistants that speak the Model Context Protocol. Why • Build • Features • Quick Start • Docs • Website • Blog.

What you get

SatGate is an Economic Firewall for AI agent requests. Drop it in front of your APIs and MCP tools to enforce scoped authority, budgets, paid-rail context, and Evidence Pack receipts before agents act.

  • 🛡️ Capability Tokens (Macaroons) — Cryptographic credentials with built-in caveats, delegation, and next-request revocation. Not API keys — tokens that agents can safely sub-delegate
  • 🎯 MCP-Aware — Parses MCP JSON-RPC tool calls. Know that Agent X spent $47 on search_database and $12 on send_email — not just "1,000 requests."
  • 💰 Budget Enforcement — Hard stops per agent, team, or API. When the budget hits zero, requests are blocked. Not logged. Not alerted. Blocked
  • Paid-Rail Governance — Govern paid API access across L402, x402, API-key billing, and enterprise ledgers without making any one rail the control plane
  • 🔒 Default-Deny — All routes require valid credentials unless explicitly public. Zero Trust by design
  • 🚀 <50ms Overhead — Lightweight Go proxy. Adds governance without adding latency

What the assistant can call

Once Satgate is connected, these are the calls the assistant has available:

  • name — public-health
  • Macaroons — Bearer tokens with embedded caveats (expiry, scope, budget, IP). Not API keys — they support delegation without server roundtrips
  • Delegation — Agent A gives Agent B a sub-token with reduced permissions and a $50 budget cap. B can't escalate
  • Paid — rail context**: SatGate treats L402, x402, API-key billing, and enterprise ledgers as rails to govern around. Evidence Packs preserve which rail was
  • Per — tool costs**: web_search: 5, dalle_generate: 50 (wildcard patterns supported)
  • Policy — Description
  • public — No authentication
  • capability — Requires valid Macaroon
  • l402 — Requires Lightning payment and records paid-rail context
  • Language — Package
  • JavaScript — npm install @satgate/sdk

Configuration and credentials

You will need 5 environment variables: ADMIN_TOKEN, LIGHTNING_BACKEND, SATGATE_API_KEY, YOUR_CAPABILITY_TOKEN, CAPABILITY_ROOT_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Choosing this one

This sits in the payments and commerce group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Satgate's toolset — name, Macaroons, Delegation and 8 more — is a fair guide to whether it matches your workflow. It is maintained by satgate-io; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Satgate's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Satgate.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the satgate mcp server does with a few real requests.

Available tools

ToolWhat it does
namepublic-health
MacaroonsBearer tokens with embedded caveats (expiry, scope, budget, IP). Not API keys — they support *delegation* without server roundtrips.
DelegationAgent A gives Agent B a sub-token with reduced permissions and a $50 budget cap. B can't escalate.
Paidrail context**: SatGate treats L402, x402, API-key billing, and enterprise ledgers as rails to govern around. Evidence Packs preserve which rail was involved without making the rail the product.
Pertool costs**: web_search: 5, dalle_generate: 50 (wildcard patterns supported)
PolicyDescription
publicNo authentication
capabilityRequires valid Macaroon
l402Requires Lightning payment and records paid-rail context
LanguagePackage
JavaScriptnpm install @satgate/sdk

How to install the Satgate MCP server

{
  "mcpServers": {
    "satgate": {
      "command": "npx",
      "args": ["-y", "@satgate/sdk"],
      "env": {
        "ADMIN_TOKEN": "your-value",
        "LIGHTNING_BACKEND": "your-value",
        "SATGATE_API_KEY": "your-value",
        "YOUR_CAPABILITY_TOKEN": "your-value",
        "CAPABILITY_ROOT_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
ADMIN_TOKENCredential the server authenticates with.Yes
LIGHTNING_BACKENDConfiguration value read at startup.Optional
SATGATE_API_KEYCredential the server authenticates with.Yes
YOUR_CAPABILITY_TOKENCredential the server authenticates with.Yes
CAPABILITY_ROOT_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Satgate to name.
  • Use Satgate to Macaroons.
  • Use Satgate to Delegation.

Frequently asked questions

It connects Satgate to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (name, Macaroons, Delegation, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Satgate directly.