mpp-stripe-client

mpp-stripe-client is a skill for Claude Code, Codex from OpenLinkSoftware/ai-agent-skills. It costs 55 tokens per session (767 once invoked), scanned A, original, MIT.

A client for the Machine Payment Protocol using Stripe. MPP is a payment flow in which a web resource responds with a payment request before granting access.

In plain words
What is it for?
Use it to access an MPP-protected URL by creating a Stripe test payment token and requesting the resource again.
Why use it?
It handles the payment challenge and retry sequence needed to retrieve a paid resource.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md.

Good fit Use it to access an MPP-protected URL by creating a Stripe test payment token and requesting the resource again.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/openlinksoftware/ai-agent-skills/mpp-stripe-client
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 OpenLinkSoftware/ai-agent-skills --skill mpp-stripe-client
Clone the repo
git clone --depth 1 https://github.com/OpenLinkSoftware/ai-agent-skills

Made for: Claude Code, Codex.

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 mpp-stripe-client

README.md
[![agentmods](https://agentmods.dev/badge/skills/openlinksoftware/ai-agent-skills/mpp-stripe-client/github.svg)](https://agentmods.dev/skills/openlinksoftware/ai-agent-skills/mpp-stripe-client)
Your own site
<a href="https://agentmods.dev/skills/openlinksoftware/ai-agent-skills/mpp-stripe-client"><img src="https://agentmods.dev/badge/skills/openlinksoftware/ai-agent-skills/mpp-stripe-client/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 mpp-stripe-client

Your own site · 80×15
<a href="https://agentmods.dev/skills/openlinksoftware/ai-agent-skills/mpp-stripe-client"><img src="https://agentmods.dev/badge/skills/openlinksoftware/ai-agent-skills/mpp-stripe-client.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 767 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 57
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 60
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
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.00055 $0.00767
Opus 5 $0.00028 $0.00383
Sonnet 5 $0.00011 $0.00153
Haiku 4.5 $0.00006 $0.00077

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

Security

Grade A, and why

mpp-stripe-client scanned grade A with 0 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

mpp-stripe-client/SKILL.md · 92 lines

How it starts

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

MPP Stripe Client Skill

When to Use

  • "Pay for this resource at ..."
  • "Access this MPP-protected URL ..."
  • "Use Stripe to pay for ..."
  • "Run MPP client against ..."
  • Any request referencing a URL that returns 402 Payment Required with an MPP challenge.

Prerequisites

The project must be installed at ~/Documents/Management/Development/mpp-stripe-client/:

cd ~/Documents/Management/Development/mpp-stripe-client
npm install

A Stripe test secret key (sk_test_...) is required. Set it as an environment variable:

export STRIPE_SECRET_KEY=sk_test_...

Or the skill will ask for it.

Workflow

PRE-BUILD CHECK: Before producing output, re-read the relevant workflow section above and re-read any checklists or verification gates defined in this skill. Confirm each checklist item before writing output. Build to pass — do not retro-fit. Apply the CLAUDE.md Anti-Drift Protocol: re-read spec section before build, gate-first validation, section-by-section delivery.

Step 1 — Collect target URL and Stripe key

Ask the user for:

  1. Target URL — the MPP-protected resource to access
  2. Stripe secret key — if STRIPE_SECRET_KEY is not already in the environment

If no URL is provided, ask for it. Do not assume defaults.

Step 2 — Run the MPP client

With the target URL and Stripe key confirmed, execute the client. The client runs from the installed project directory and accepts the target URL as SERVER_URL:

cd ~/Documents/Management/Development/mpp-stripe-client \
  && SERVER_URL="<target-url>" STRIPE_SECRET_KEY="<key>" npx tsx cli.ts

Do not use npm run cli — it reads .env which overrides inline variables with localhost defaults. Always invoke npx tsx cli.ts directly with inline SERVER_URL and STRIPE_SECRET_KEY.

The client will:

  1. GET <target-url> — receive 402 Payment Required with challenge
  2. Create a Stripe test payment method
  3. Create a Stripe Shared Payment Token (SPT) scoped to the challenge amount
  4. GET <target-url> with Authorization: Payment <credential>
  5. Receive 200 with the paid resource and receipt

Read the full file on GitHub · 92 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. 9d ago First seen · 92 lines · 55 tokens per session scan A 9af95b45dffb

Subscribe to this mod's changes

mpp-stripe-client is a skill published in the GitHub repository OpenLinkSoftware/ai-agent-skills (38 stars, last pushed today), licensed MIT. It adds 55 tokens to every session and 767 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories