create_subscription_link
InactiveTool of Estonia Payments (Stripe — cards / Apple Pay)
Create a recurring subscription checkout link (monthly/yearly/weekly billing) via Stripe. The buyer opens the URL, enters their card once, and is then charged automatically every period until canceled. Amount is per billing period in the local currency major unit. Respects the same owner policy guardrails as payments (the per-period amount is checked before anything is created).
Parameters schema
{
"type": "object",
"required": [
"amount_eur",
"description"
],
"properties": {
"interval": {
"enum": [
"month",
"year",
"week",
"day"
],
"type": "string",
"description": "Billing period. Default \"month\"."
},
"amount_eur": {
"type": "number",
"description": "Amount charged per billing period (local currency major unit)"
},
"description": {
"type": "string",
"description": "What the subscription is for (shown to the buyer, <=200 chars)"
},
"success_url": {
"type": "string",
"description": "Optional https URL to send the buyer to after subscribing."
},
"customer_email": {
"type": "string",
"description": "Optional buyer email (pre-filled at checkout; receipt goes there)."
}
}
}Parent server
Estonia Payments (Stripe — cards / Apple Pay)
https://github.com/junter1989k-ai/estonia-payments-mcp
2/7 registries