# Rezi Resume MCP

Rezi MCP lets you connect your Rezi account to AI tools like Claude, Codex, and Gemini using MCP. You can tailor resumes to job descriptions, create new resumes from scratch, find jobs, and manage ev…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add dsd/rezi

# Browse available tools
npx -y @smithery/cli@latest tool list dsd/rezi

# Get full schema for a tool
npx -y @smithery/cli@latest tool get dsd/rezi list_resumes

# Call a tool
npx -y @smithery/cli@latest tool call dsd/rezi list_resumes '{}'
```

## Direct MCP Connection

Endpoint: `https://rezi--dsd.run.tools`

## Tools (5)

- `list_resumes` — List resumes for the authenticated Rezi user, ordered by most recently updated. Returns an array of resume summaries wi…
- `read_resume` — Read the full data for a specific resume by its ID.
- `write_resume` — Create or update a Rezi resume. When creating: omit resume_id and a new ID will be generated. When updating: provide th…
- `search_jobs` — Search for job listings by role and location. Returns 10 results per page with title, company, location, URL, and descr…
- `get_job_details` — Get the full details for a specific job by its ID, including the complete job description. Use this after search_jobs t…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get dsd/rezi <tool-name>
```
