The MCP Server for NovaCV is a powerful tool that allows you to interact with NovaCV resume services API, enabling PDF resume generation, template management, resume text parsing, and content analysis via the Model Context Protocol.
Before using this service, you need to obtain a NovaCV API key:
Always keep your API key secure and never share it publicly.
You can install the MCP server globally or run it using npx:
# Global installation
npm install -g mcp-server-novacv
# Or run with npx
npx mcp-server-novacv --api_key=your_api_key
The simplest way to get started is using the quick start command:
# Build and start the service in one command
npm run run
# Build and start Inspector in one command
npm run debug
npx mcp-server-novacv [options]
Options:
--api_key=KEY Set NovaCV API key
--api_base_url=URL Set API base URL
--timeout=MS Set API timeout (milliseconds)
--help, -h Show help information
--version, -v Show version information
You can configure the API key using environment variables:
NOVACV_API_KEY=your_api_key mcp-server-novacv
Or create a .env file:
NOVACV_API_KEY=your_api_key
NOVACV_API_BASE_URL=https://api.nova-cv.com
Add to Cursor configuration file:
{
"mcpServers": {
"novacv": {
"command": "npx",
"args": ["mcp-server-novacv"],
"env": {
"NOVACV_API_KEY": "your_api_key"
}
}
}
}
In Cherry Studio:
Name: novacv
For JSON configuration:
{
"novacv": {
"command": "npx",
"args": ["mcp-server-novacv"],
"env": {
"NOVACV_API_KEY": "your_api_key"
}
}
}
The MCP server provides these powerful tools:
Use mcp_novacv_get_templates
command in an MCP-compatible client to retrieve all available resume templates.
Use mcp_novacv_generate_resume_from_text
command with resume text content and template name to generate a PDF resume.
Use mcp_novacv_analyze_resume_text
command to analyze plain text resume content.
Use mcp_novacv_convert_resume_text
command to convert resume text to structured JSON Resume format.
If you encounter setup issues:
npx mcp-server-novacv --version
If experiencing API key-related errors:
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.