This repository contains agent skills for integrating PayMCP into MCP servers and tools.
PayMCP is a provider-agnostic SDK for adding monetization to MCP tools and agents.
monetization— Adds PayMCP monetization to MCP tools (pay-per-request pricing and subscriptions), configures providers, and selects an appropriate coordination mode.
If you are using Claude Code, you can install the skill directly with:
/plugin marketplace add PayMCP/skills
/plugin install paymcp@paymcp-skills
You can also use the Vercel Skills CLI to install skills across different AI coding agents:
npx skills add https://github.com/PayMCP/skills --skill monetizationOr copy the skill folder into your agent’s skills directory (varies by agent).
If you are building a paid MCP server from scratch, first install the official MCP SDK for your language:
TypeScript / Node:
npm install @modelcontextprotocol/sdk zod
Docs: https://github.com/modelcontextprotocol/typescript-sdk/blob/main/docs/server.md
Python:
pip install "mcp[cli]" (or uv add "mcp[cli]")
Docs: https://github.com/modelcontextprotocol/python-sdk
Official docs: https://paymcp.info/docs API reference (including custom providers): https://paymcp.info/docs/api-reference
Built-in providers include: Stripe, Adyen, Coinbase Commerce, PayPal, Square, Walleot, and X402.
By default, PayMCP uses in-memory state storage. For production and horizontal scaling, the docs recommend RedisStateStore.
When possible, use the official SDK rather than custom payment logic to stay compatible with coordination modes and providers.
- Node server demo: https://github.com/PayMCP/node-paymcp-server-demo
- Python server demo: https://github.com/PayMCP/python-paymcp-server-demo
- Subscription demo: https://github.com/PayMCP/paymcp-subscription-demo
Pre-print: https://zenodo.org/records/18158720