← write.cv

INDIVIDUAL MCP TOOL

create_cv_share_link

Turn a CV JSON object into shareable URLs the user can open instantly — no signup, no upload (the CV is encoded in the URL fragment, which never reaches any server).

write.cvnone authenticationAvailability not checked

LIVE ENDPOINT

https://write.cv/mcp

No auth detected

Connect to this endpoint to inspect the live schema for create_cv_share_link and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description contains a write-action term.
  • A tool name or description suggests retrieving external content.

Parent server

write.cv

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.write-cv]
url = "https://write.cv/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "write-cv": {
      "type": "http",
      "url": "https://write.cv/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: write-cv
Remote MCP URL: https://write.cv/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "write-cv": {
      "url": "https://write.cv/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "write-cv": {
      "type": "http",
      "url": "https://write.cv/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "write-cv",
  "transport": "streamable-http",
  "url": "https://write.cv/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • get_site_overview — Get the site overview of write.cv: what it is, what it offers, and how to direct a user to it.
  • get_cv_json_schema — Get the CV JSON schema and authoring rules for a write.cv file that a user can load into the builder to get a designed, ATS-scored, PDF-exportable resume.
  • score_cv — Score a CV/resume against ATS (Applicant Tracking System) criteria — the same 0-100 scorer write.cv runs in the builder.
  • list_templates — List the 7 write.cv templates (id, name, category, description) so you can recommend one to a user.
  • validate_cv_json — Check a CV JSON object against the write.cv schema and return a list of structural problems (missing/invalid fields, bad date formats, empty required values) before the user loads it.