Metadata-Version: 2.4
Name: cv-forge-mcp
Version: 1.3.0
Summary: MCP server for AI-driven CV generation — PDF/DOCX export with visual editor
Project-URL: Homepage, https://github.com/Guid-Lab/cv-forge-mcp
Project-URL: Repository, https://github.com/Guid-Lab/cv-forge-mcp
Author: Guid Lab
License-Expression: MIT
License-File: LICENSE
Keywords: cv,docx,mcp,pdf,resume
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27
Requires-Dist: mcp[cli]>=1.0.0
Description-Content-Type: text/markdown

# CV Forge MCP Server

[![PyPI](https://img.shields.io/pypi/v/cv-forge-mcp)](https://pypi.org/project/cv-forge-mcp/)
[![License](https://img.shields.io/badge/license-MIT-brightgreen)](LICENSE)

MCP (Model Context Protocol) server for [CV Forge](https://github.com/Guid-Lab/cv-forge). Lets AI assistants generate professional CVs as PDF/DOCX from conversation data.

## How It Works

1. You describe your experience to the AI (or paste LinkedIn profile text)
2. AI fills in the CV template using the `generate_cv` tool
3. AI calls `generate_pdf` or `generate_docx` to produce the document
4. You get a PDF/DOCX file **and** a link to the visual editor for manual tweaks

The MCP server automatically pulls and starts the CV Forge Docker container — no manual setup needed.

## Requirements

- [Docker](https://docs.docker.com/get-docker/)

## Quick Start

### Claude Code

```bash
claude mcp add cv-forge -- uvx cv-forge-mcp
```

### Claude Desktop

Add to `~/.config/claude/claude_desktop_config.json` (Linux) or `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS):

```json
{
  "mcpServers": {
    "cv-forge": {
      "command": "uvx",
      "args": ["cv-forge-mcp"]
    }
  }
}
```

### Manual install (alternative)

```bash
pip install cv-forge-mcp
```

## Available Tools

| Tool | Description |
|------|-------------|
| `generate_cv` | Returns an empty CV JSON template for the AI to fill in |
| `generate_pdf` | Generates ATS PDF from CV data, returns file path + editor URL |
| `generate_docx` | Generates ATS DOCX from CV data, returns file path + editor URL |

## AI Instructions

See [`INSTRUCTIONS.md`](INSTRUCTIONS.md) for the full system prompt and workflow guidelines for AI assistants using CV Forge.

## Links

- **CV Forge:** https://github.com/Guid-Lab/cv-forge
- **Live Demo:** https://cv.guidlab.pl
- **Docker Hub:** https://hub.docker.com/r/guidlab/cv-forge
