# Rize — how to use (mcp.ai)

Connect your Rize account and use 8 tools for productivity straight from your AI agent. Connect with your own API key. Rize is an AI-powered time tracking and productivity tool that automatically tracks your work time and provides insights.

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

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

### Endpoints
- `POST https://api.mcp.ai/api/rize/create/api/key` — Create a new API key for the partner. Use this action when you need to generate a new API key for authentication with the Rize API. The API key is created server-side and returned in the response. Not
- `POST https://api.mcp.ai/api/rize/create/card` — Creates a new card in the Rize system. Use this action when you need to create a new card for a cardholder. The card will be associated with the specified partner financial account. Card creation is i
  - body: { name: string, type: string, notes?: string, cardholder_id: integer, partner_financial_account_id: integer }
- `POST https://api.mcp.ai/api/rize/create/cardholder` — Creates a new cardholder in the Rize system. Use this action when you need to register a new cardholder with their personal information, addresses, and tax identification. This action is irreversible 
  - body: { tin: string, last_name: string, first_name: string, occupation?: string, middle_name?: string, phone_number: string, date_of_birth: string, email_address: string, mailing_address: object, physical_address: object, citizenship_country_iso_code: string }
- `POST https://api.mcp.ai/api/rize/create/counterparty` — Creates a new Counterparty in the Rize system. A counterparty represents an external party (such as a vendor, supplier, or business partner) that can receive transfers from your account. Use when sett
  - body: { ach?: object, external_uid?: string, name_on_account: string }
- `POST https://api.mcp.ai/api/rize/create/partner/financial/account` — Create a new financial account for an existing partner in the Rize admin API. Use this action when you need to provision a new financial account (such as a bank account) for a partner organization tha
  - body: { partner_id: integer, financial_provider: string }
- `POST https://api.mcp.ai/api/rize/create/user` — Creates a new user in the Rize system. Use this action when you need to register a new user with their email, name, and role. Optionally, cardholder information can be provided to associate a cardhold
  - body: { role: string, email: string, last_name: string, cardholder?: object, first_name: string }
- `POST https://api.mcp.ai/api/rize/get/cardholder` — Retrieve detailed information about a specific cardholder using their unique identifier. Use this action when you need to fetch cardholder profile data including name, contact information, addresses, 
  - body: { id: integer }
- `POST https://api.mcp.ai/api/rize/get/virtual/card/image` — Retrieves the virtual card image asset. Returns the image representation of a virtual debit card which can be displayed in mobile or web applications. Use this action when you need to fetch the visual

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

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