For AI agents
Resume Builder MCP
CVFAST speaks the Model Context Protocol, so an AI agent can format candidate resumes for you directly from a chat. Included on every plan, the free one too.
-
1
Connect your agent
Pick your client. Each one signs you in with OAuth — you sign in (or create a free account) and approve the assistant in your browser, no token to copy.
In your terminal, run:
claude mcp add --transport http cvfast https://cvfast.com/api/v1/mcp
It opens cvfast.com in your browser for you to sign in and approve the assistant.
Settings → Developer → Edit Config, and add this (via the
mcp-remotebridge):{ "mcpServers": { "cvfast": { "command": "npx", "args": ["-y", "mcp-remote", "https://cvfast.com/api/v1/mcp"] } } }Restart Claude Desktop — it opens your browser the first time to sign in and approve the assistant.
Add to
.cursor/mcp.json:{ "mcpServers": { "cvfast": { "url": "https://cvfast.com/api/v1/mcp" } } }Cursor shows a "Needs login" prompt the first time — sign in and approve in the browser tab that opens.
Add to
.vscode/mcp.json:{ "servers": { "cvfast": { "type": "http", "url": "https://cvfast.com/api/v1/mcp" } } }VS Code opens your browser the first time it connects — sign in and approve the assistant.
-
2
Ask your agent to build a resume
Paste a prompt like this one into your agent's chat:
using cvfast create resume from text below <paste raw resume text here>
-
3
Automation without a browser (optional)
For n8n/Zapier-style workflows, ATS integrations, or a locally-run MCP server where an interactive sign-in isn't possible, generate an API token from your account settings and pass it as a bearer header instead:
claude mcp add --transport http cvfast https://cvfast.com/api/v1/mcp \ --header "Authorization: Bearer YOUR_API_TOKEN"
Same idea in Claude Desktop, Cursor, or VS Code — add an
Authorization: Bearerheader to that client's MCP config instead of setting up the browser flow.