概览
What is Greece Payments Mcp?
A remote MCP server that enables any AI agent (Claude, ChatGPT, Cursor) to accept payments in Greece via Stripe’s hosted checkout. It acts as a stateless translation layer—funds flow directly from buyer to Stripe to merchant without ever holding funds or storing credentials.
How to use Greece Payments Mcp?
Point your MCP client to https://mcp-gr.wishpool.app/mcp (Streamable HTTP, stateless JSON-RPC). Provide your Stripe secret key as the x-stripe-secret-key header (test mode sk_test_ or production sk_live_ from Stripe Dashboard). The server exposes two tools: create_payment_link (creates a EUR hosted‑checkout link) and query_payment_status (pull‑based status check).
Key features of Greece Payments Mcp
- Stateless: no database, never stores credentials or funds.
- Works with any AI agent (Claude, ChatGPT, Cursor, etc.).
- Integrates with Stripe hosted checkout (cards, Apple Pay, Google Pay).
- Two tools: create payment link and query payment status.
- Streamable HTTP transport with simple header‑based authentication.
- Part of a 71‑country payment server family via hub.
Use cases of Greece Payments Mcp
- Let an AI assistant accept card payments for a product or service.
- Enable a chatbot to generate a one‑time payment link in euros.
- Automate order fulfillment after payment confirmation via
query_payment_status. - Embed payment initiation into a conversational AI workflow without custom backend code.
FAQ from Greece Payments Mcp
Do I need to expose my Stripe secret key to the server?
Yes. You provide your Stripe secret key as the x-stripe-secret-key HTTP header when connecting to the MCP endpoint. The server uses it only to call Stripe’s API on your behalf; it never stores the key.
Where does payment data live?
Funds and data flow directly between the buyer and Stripe. The MCP server is a stateless translation layer—it has no database and never holds card numbers, credentials, or funds.
What payment methods are supported?
Whatever methods are enabled on your Stripe account: cards, Apple Pay, Google Pay, and any other payment method Stripe supports for hosted checkout in Greece.
How do I switch between test and live payments?
Use the appropriate Stripe secret key: sk_test_… for test mode or sk_live_… for production. The server passes the key through to Stripe without modification.
Which tools does the server expose?
Two tools: create_payment_link to generate a EUR hosted‑checkout URL, and query_payment_status to poll whether a payment has been completed (paid=true).