# Exist — how to use (mcp.ai)

Exist is a personal analytics app that combines data from various services to help users understand and improve their lives.

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

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

### Endpoints
- `POST https://api.mcp.ai/api/exist/exist/get/user/profile` — Tool to retrieve the authenticated user's profile details and preferences. use after authentication to inspect account settings and status.
- `POST https://api.mcp.ai/api/exist/exist/o/auth2/authorize` — Tool to initiate the oauth2 authorization flow for user consent. use when you need an authorization code before exchanging for an access token.
  - body: { scope: string, state?: string, client_id: string, redirect_uri: string, response_type?: string }
- `POST https://api.mcp.ai/api/exist/exist/oauth2/authorize` — Tool to initiate the oauth2 authorization flow for user consent. use when you need to obtain an authorization code before exchanging for an access token.
  - body: { scope: string, state?: string, client_id: string, redirect_uri: string, response_type?: string }
- `POST https://api.mcp.ai/api/exist/get/attribute/templates` — Tool to retrieve a paged list of supported attribute templates. use when you need to browse available templates before creating or updating data.
  - body: { page?: integer, limit?: integer, groups?: string[], include_low_priority?: boolean }
- `POST https://api.mcp.ai/api/exist/get/correlations` — Tool to retrieve a paginated list of recent correlations. use when exploring relationships between your tracked attributes, optionally filtering by strength or attribute.
  - body: { page?: integer, limit?: integer, strong?: boolean, attribute?: string, confident?: boolean }
- `POST https://api.mcp.ai/api/exist/get/user/attributes` — Tool to retrieve a paged list of the user's attributes without values. use when you need metadata on available attributes for filtering or selection.
  - body: { page?: integer, limit?: integer, owned?: boolean, groups?: string[], manual?: boolean, attributes?: string[], exclude_custom?: boolean, include_inactive?: boolean, include_low_priority?: boolean }
- `POST https://api.mcp.ai/api/exist/get/user/profile` — Tool to retrieve the authenticated user's profile details and preferences. use after authentication to inspect account settings and status.

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