Stripe mcp

ReviewAudited by ClawScan on May 10, 2026.

Overview

This is a coherent Stripe MCP connector, but it needs a Stripe bearer token and can modify real billing or money-related account data if given sufficient Stripe permissions.

Install this only if you want the agent to access your Stripe account. Use a restricted Stripe API key, start with read-only permissions when possible, review the live MCP tool list, and require explicit confirmation before any action that creates, updates, refunds, bills, or otherwise changes Stripe data.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If used with a powerful Stripe key, the agent may be able to change real billing records, subscriptions, refunds, account settings, or money-related objects.

Why it was flagged

The skill discloses that its tools may perform high-impact Stripe writes, and it includes appropriate guidance to confirm user intent before write-capable actions.

Skill content
Stripe tools can affect real customers, billing objects, subscriptions, refunds, account settings, and money movement. Confirm explicit user intent before any write-capable call
Recommendation

Use restricted or read-only Stripe keys when possible, inspect current object state before changes, and require explicit user confirmation before creating, updating, refunding, or otherwise mutating Stripe data.

What this means

Anyone or any agent action with access to this credential may be able to use the Stripe permissions granted by that token.

Why it was flagged

The skill requires a sensitive Stripe credential and uses it for bearer authentication; this is expected for Stripe MCP access and the artifact does not show unrelated use or leakage.

Skill content
This skill expects `MAVERICK_STRIPE_MCP_ACCESS_TOKEN` to be set in the agent runtime environment. mcporter sends it as `Authorization: Bearer <value>` on every request.
Recommendation

Store the token in a secret store or environment variable, avoid embedding it in files or prompts, and prefer Stripe restricted API keys with the minimum needed permissions.

What this means

The live Stripe MCP server can shape which tools the agent sees and how it thinks they should be used during the session.

Why it was flagged

The skill tells the agent to rely on provider-published MCP instructions and schemas. This is normal for a hosted MCP integration, but external instructions should remain subordinate to the user's request and safety requirements.

Skill content
The live server is the source of truth for what tools exist, what they're called, what arguments they take, and any per-server instructions the server publishes. ... Treat this as the authoritative reference for the rest of the session.
Recommendation

Use server instructions only as API/tool guidance, and continue to follow the user's explicit intent, least-privilege practices, and confirmation requirements for write actions.

What this means

Installing the skill may install and run an external CLI package that was not included in the skill's own file contents for review.

Why it was flagged

The skill depends on an external Node package to provide the mcporter binary. This is central to the MCP pass-through design, but the provided install spec does not pin a package version.

Skill content
node | package: mcporter | creates binaries: mcporter
Recommendation

Install mcporter from a trusted source, consider pinning or verifying the package version, and keep it updated through normal dependency hygiene.