# The Plan Shop The Plan Shop is a digital marketplace selling Excel (.xlsx) spreadsheet templates for personal finance, small business, and home management. Templates are priced in EUR (amounts in API responses are integer cents). Payments are auto-accepted (mock). All purchases generate download links valid for 30 days / 10 uses. ## Buy programmatically ``` curl -X POST https://planshop.binary.tools/api/v1/checkout \ -H "Content-Type: application/json" \ -H "Idempotency-Key: my-unique-key-001" \ -d '{"email":"buyer@example.com","items":[{"slug":"crm-lite"}]}' ``` ## MCP Endpoint: https://planshop.binary.tools/mcp/shop Protocol: JSON-RPC 2.0 Auth: none MCP client config snippet: ```json { "mcpServers": { "planshop": { "url": "https://planshop.binary.tools/mcp/shop", "transport": "http" } } } ``` ## Machine-readable resources - OpenAPI spec: https://planshop.binary.tools/api/openapi.yaml - Full catalog feed: https://planshop.binary.tools/api/v1/catalog.json - MCP manifest: https://planshop.binary.tools/.well-known/mcp.json - Full LLM guide: https://planshop.binary.tools/llms-full.txt - Agentic info page: https://planshop.binary.tools/agentic ## Policies - Prices in EUR, amounts returned as integer cents (e.g. 999 = €9.99) - Payments are mock auto-accept — no real card required - Download links expire after 30 days or 10 uses (whichever comes first) - Idempotency-Key header required on all purchase requests - Rate limits: 120 reads/min per IP, 10 writes/hour per IP