MCP Server Policy

STRIPE MCP POLICY

Enforce policies on every tool call to the Stripe MCP Server. 27 tools listed, categorised, and ready for rules.

stripe/agent-toolkit 11 read 16 write 27 tools total
stripe payments billing subscriptions invoices

GET STARTED

Download this policy scaffold and add your rules. Intercept enforces them on every tool call before it reaches Stripe.

terminal

# Download policy scaffold

curl -o stripe.yaml https://raw.githubusercontent.com/policylayer/intercept/main/policies/stripe.yaml

# Run with Intercept

intercept --policy stripe.yaml -- npx -y @stripe/agent-toolkit

Server documentation: https://docs.stripe.com/mcp

READ TOOLS

11

WRITE TOOLS

5

FINANCIAL TOOLS

11

POLICY YAML

This scaffold lists every tool with empty rules. Add conditions — rate limits, argument validation, deny rules — then deploy with Intercept.

stripe.yaml
version: "1"
description: "Policy for stripe/agent-toolkit"
default: "allow"
tools:
    fetch_stripe_resources:
        rules: []
    get_stripe_account_info:
        rules: []
    list_coupons:
        rules: []
    list_customers:
        rules: []
    list_disputes:
        rules: []
    list_prices:
        rules: []
    list_products:
        rules: []
    list_setup_intents:
        rules: []
    retrieve_balance:
        rules: []
    search_stripe_documentation:
        rules: []
    search_stripe_resources:
        rules: []
    create_coupon:
        rules: []
    create_customer:
        rules: []
    create_price:
        rules: []
    create_product:
        rules: []
    update_dispute:
        rules: []
    cancel_subscription:
        rules: []
    create_invoice:
        rules: []
    create_invoice_item:
        rules: []
    create_payment_link:
        rules: []
    create_refund:
        rules: []
    finalize_invoice:
        rules: []
    list_charges:
        rules: []
    list_invoices:
        rules: []
    list_payment_intents:
        rules: []
    list_subscriptions:
        rules: []
    update_subscription:
        rules: []

RELATED POLICIES

FREQUENTLY ASKED QUESTIONS

What tools does the Stripe MCP server expose?

The Stripe MCP Server exposes 27 tools across 3 categories: Read, Write, Financial. Each tool can be individually controlled with Intercept policies.

How do I enforce policies on Stripe?

Download the policy scaffold, add rules (rate limits, argument validation, deny rules), then run Intercept as a proxy in front of the Stripe MCP server. Every tool call is evaluated against your YAML policy before execution.

Is the Stripe policy free to use?

Yes. All Intercept policies are open source under the Apache 2.0 licence. Download, modify, and deploy without restrictions.

ENFORCE POLICIES ON STRIPE

Open source. One binary. Zero dependencies.