# Cloudpress — how to use (mcp.ai)

Connect your Cloudpress account and use 5 tools for documents straight from your AI agent. Connect with your own API key. Cloudpress enables exporting content from Google Docs and Notion to various Content Management Systems.

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

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

### Endpoints
- `POST https://api.mcp.ai/api/cloudpress/get/account/information` — Tool to retrieve authenticated account information. Use after authentication to get current account details.
- `POST https://api.mcp.ai/api/cloudpress/list/collections` — Tool to list all collections in the user's Cloudpress account. Use when you need to browse or manage collection metadata. Supports pagination via pageNo and pageSize.
  - body: { pageNo?: integer, pageSize?: integer }
- `POST https://api.mcp.ai/api/cloudpress/list/connections` — Tool to list all connections with pagination. Use when you need to retrieve Cloudpress connections page by page with optional filters like kind, type, or sourceReference.
  - body: { kind?: string, type?: string, pageNo?: integer, pageSize?: integer, properties?: object, sourceReference?: string }
- `POST https://api.mcp.ai/api/cloudpress/list/document/exports` — Tool to retrieve a paginated list of document exports. Use after initiating export jobs to fetch export history.
  - body: { pageNo?: integer, pageSize?: integer }
- `POST https://api.mcp.ai/api/cloudpress/list/webhooks` — Tool to retrieve a paginated list of webhooks. Use when you need an overview of all configured webhooks.

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

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