MCP proxy server for NextRole CV tailoring services
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"nextrole": {
"args": [
"nextrole-mcp-proxy"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) proxy server that provides access to NextRole's professional CV and cover letter tailoring services. This proxy allows MCP-compatible clients to interact with NextRole's hosted services.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity / writing
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
MCP server for using the monday.com API
Local-first AI memory with knowledge graphs and hybrid search. 17+ AI tools via MCP. Free.
MCP Security Weekly
Get CVE alerts and security updates for io.github.bats64mgutsi/nextrole-mcp-proxy and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) proxy server that provides access to NextRole's professional CV and cover letter tailoring services. This proxy allows MCP-compatible clients to interact with NextRole's hosted services.
Clone the repository and run the install script. It will install dependencies, build the project, and print the MCP client configuration JSON for you.
git clone https://github.com/bats64mgutsi/nextrole-mcp-proxy.git
cd nextrole-mcp-proxy
Linux / macOS:
bash install.sh
Windows (PowerShell):
.\install.ps1
At the end of the script, you'll see the MCP client configuration JSON with the correct path to your local installation. Copy it into your MCP client's configuration file.
Add to your MCP client configuration:
{
"mcpServers": {
"nextrole": {
"command": "npx",
"args": ["nextrole-mcp-proxy"]
}
}
}
Get the available career-level tiers and their product IDs. You must call this before placing an order to get the correct productId.
Usage:
What are your different CV tailoring packages?
Response:
[
{
"CountryCode": "ZA",
"ServiceTier": "Entry Level",
"ProductId": 1
},
{
"CountryCode": "ZA",
"ServiceTier": "Mid Level",
"ProductId": 2
},
{
"CountryCode": "ZA",
"ServiceTier": "Senior Level",
"ProductId": 3
}
]
Check how many credits a customer has remaining. Each order costs 1 credit.
Parameters:
phoneNumber (required): Customer phone number including country code (e.g. +27831234567)Usage:
How many credits do I have left? My phone number is +27831234567
Response:
{
"credits": 5
}
Place an order for a tailored CV and cover letter. The order typically takes about 15 minutes to complete. The customer will receive SMS notifications when the order is confirmed and when documents are ready. Costs 1 credit per order.
Parameters:
customerPhone (required): Customer phone number including country code, must start with '+' (e.g. +27831234567)customerFirstName (required): Customer's first namecustomerLastName (required): Customer's last namecvMarkdown (required): The customer's current CV in markdown formatproductId (required): The product ID matching the customer's career level (call get_pricing first)jobDescription (required): The full job description the customer is applying forUsage:
I need to tailor my CV for a Junior Software Developer position. My phone number is +27831234567, my name is John Smith, and here's my current CV in markdown:
# John Smith
## Experience
- Junior Developer at TechCorp (2023-present)
The job description is: We are seeking a Junior Software Developer to join our team with React and Node.js experience.
Response:
{
"orderKey": "550e8400-e29b-41d4-a716-446655440000",
"status": "success",
"message": "Order placed successfully. SMS notifications sent."
}
Perfect for recent graduates and early-career professionals:
I'm Sarah Johnson (+44207123456) and need my CV tailored for this graduate software engineer role: Graduate Software Engineer requiring Python programming and problem-solving skills.
My current CV:
# Sarah Johnson
## Education
- Computer Science Degree, University of London (2024)
## Projects
- B
... [View full README on GitHub](https://github.com/bats64mgutsi/nextrole-mcp-proxy#readme)