# Wiza — how to use (mcp.ai)

Connect your Wiza account and use 5 tools for sales and CRM straight from your AI agent. Connect with your own API key. Wiza helps you find and export accurate contact data for prospects from LinkedIn, providing verified emails, phone numbers, and enriched professional information.

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

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

### Endpoints
- `POST https://api.mcp.ai/api/wiza/get/credits` — Tool to get the number of remaining API credits in your account. Returns available credits for emails, phone numbers, and company enrichment. Use when you need to check remaining API credit balance.
- `POST https://api.mcp.ai/api/wiza/get/individual/reveal` — Tool to get the status and results of an individual reveal by ID. Returns enriched contact data including email, phone, job title, and company information when the reveal is completed. Use when you ne
  - body: { id: string }
- `POST https://api.mcp.ai/api/wiza/get/list` — Tool to get the status and details of a list by its ID. Returns list metadata, status (queued, processing, completed), and statistics including enrichment level and email preferences. Use when you nee
  - body: { id: string }
- `POST https://api.mcp.ai/api/wiza/prospect/search` — Tool to search for prospects matching specific filters. Returns count and sample profiles based on job title, location, company, industry, and other criteria. Use when you need to find prospects that 
  - body: { limit?: integer, filters: object }
- `POST https://api.mcp.ai/api/wiza/start/individual/reveal` — Tool to start an individual reveal for real-time single contact enrichment. Provide name/company, email, or LinkedIn profile URL to get contact details including emails, phone numbers, and firmographi
  - body: { email?: string, domain?: string, company?: string, full_name?: string, profile_url?: string, email_options?: object, enrichment_level?: string }

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

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