# Storeganise — how to use (mcp.ai)

Connect your Storeganise account and use 3 tools for ecommerce straight from your AI agent. Connect with your own API key. Storeganise provides modern, cloud-based management software for valet and self-storage businesses, offering features like contactless online bookings, automated billing, and comprehensive APIs for integrations.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_storeganise?ms=1787296080000`
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. `storeganise_get_admin_sites_by_id`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/storeganise`
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/storeganise/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/storeganise/get/admin/sites/by/id` — Tool to retrieve a specific site by ID or code. Use when you have the site identifier and need full site details, optionally including related resources like units.
  - body: { include?: string[], site_id_or_code: string }
- `POST https://api.mcp.ai/api/storeganise/get/admin/users/by/id` — Tool to retrieve a specific admin user by ID or email. Use when you need detailed information of a single admin user.
  - body: { include?: string[], user_id_or_email: string }
- `POST https://api.mcp.ai/api/storeganise/get/admin/users/by/ids` — Tool to fetch multiple admin users by their IDs. Use when you need to retrieve details for a specific set of admin accounts in bulk after verifying their IDs.
  - body: { ids: string[] }

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

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