# Passslot — how to use (mcp.ai)

Connect your Passslot account and use 8 tools for event management straight from your AI agent. Connect with your own API key. PassSlot is a service that simplifies the creation, design, and distribution of Apple Wallet passes, including coupons, store cards, event tickets, membership cards, and boarding passes.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_passslot?ms=1787291280000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `passslot_create_scanner`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/passslot`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/passslot/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/passslot/create/scanner` — Tool to create a new scanner in Passslot. Use when you need to create a PassVerifier or Browser type scanner. Your app key must have full access to manage scanners. If fullAccess is false, provide all
  - body: { name: string, type: string, fullAccess?: boolean, allowedTemplates?: string[] }
- `POST https://api.mcp.ai/api/passslot/delete/scanner` — Tool to delete a scanner by ID. Use when you need to remove a scanner from the system. Requires full access app key to manage scanners.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/passslot/get/pass/types` — Tool to list all available pass types. Use when you need to retrieve supported pass-type identifiers before creating passes.
- `POST https://api.mcp.ai/api/passslot/get/passes/by/pass/type` — Tool to list Wallet passes, optionally filtered by a Pass Type ID. If passtype_id is provided, returns passes for that specific pass type. If passtype_id is not provided, returns all passes.
  - body: { passtype_id?: string }
- `POST https://api.mcp.ai/api/passslot/get/scanner` — Tool to retrieve details of a specific scanner. Use when you need to get information about a scanner by its ID. Requires app key with full access to manage scanners.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/passslot/list/scanners` — Tool to retrieve a list of all scanners. Use when you need to list all configured scanners. Your app key must have full access to manage scanners.
- `POST https://api.mcp.ai/api/passslot/list/templates` — Tool to retrieve a list of all pass templates. Use when you need to see available templates for creating passes.
- `POST https://api.mcp.ai/api/passslot/update/scanner` — Tool to update a scanner's configuration. Only name, fullAccess, and allowedTemplates can be updated. Use when you need to modify scanner permissions or rename a scanner. Your app key must have full a
  - body: { id: integer, name?: string, fullAccess?: boolean, allowedTemplates?: integer[] }

## Example prompts
- "What can I do in Passslot?"
- "Show me a summary of my Passslot account"

## More
- Page: https://mcp.ai/passslot
- Agent spec (llms.txt): https://mcp.ai/passslot/llms.txt
- Postman collection: https://mcp.ai/passslot/postman.json
