by jsonresume
Boost your job search with our AI powered resume builder that enhances JSON Resumes using GitHub projects for smarter, u
Automatically updates your JSON Resume by analyzing GitHub codebases and adding relevant project details and technical skills using AI.
JSON Resume Enhancer is an official MCP server published by jsonresume that provides AI assistants with tools and capabilities via the Model Context Protocol. Boost your job search with our AI powered resume builder that enhances JSON Resumes using GitHub projects for smarter, u It is categorized under productivity, developer tools.
You can install JSON Resume Enhancer in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
Unlicense
JSON Resume Enhancer is released under the Unlicense license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
JSON Resume Enhancer is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
I recommend JSON Resume Enhancer for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
JSON Resume Enhancer is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Useful MCP listing: JSON Resume Enhancer is the kind of server we cite when onboarding engineers to host + tool permissions.
JSON Resume Enhancer reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
JSON Resume Enhancer has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
JSON Resume Enhancer is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
JSON Resume Enhancer reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
JSON Resume Enhancer has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Strong directory entry: JSON Resume Enhancer surfaces stars and publisher context so we could sanity-check maintenance before adopting.
showing 1-10 of 75
Automate your resume updates with AI by analyzing your coding projects
Installation • Features • Usage • Configuration • Contributing • Testing
</div>This is a Model Context Protocol (MCP) server that enhances AI assistants with the ability to update your JSON Resume by analyzing your coding projects. The MCP server provides tools that allow AI assistants like those in Windsurf or Cursor to:
With this tool, you can simply ask your AI assistant to "enhance my resume with my current project," and it will automatically analyze your code, extract relevant skills and project details, and update your resume accordingly.
Video demo: https://x.com/ajaxdavis/status/1896953226282594381
To install mcp for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @jsonresume/mcp --client claude
npm install -g @jsonresume/mcp
Add the following to your Windsurf or Cursor configuration:
Open Settings → MCP Servers and add:
{
"jsonresume": {
"command": "npx",
"args": ["-y", "@jsonresume/mcp"],
"env": {
"GITHUB_TOKEN": "your-github-token",
"OPENAI_API_KEY": "your-openai-api-key",
"GITHUB_USERNAME": "your-github-username"
}
}
}
Add to your ~/.cursor/mcp_config.json:
{
"mcpServers": {
"jsonresume": {
"command": "npx",
"args": ["-y", "@jsonresume/mcp"],
"env": {
"GITHUB_TOKEN": "your-github-token",
"OPENAI_API_KEY": "your-openai-api-key",
"GITHUB_USERNAME": "your-github-username"
}
}
}
}
Once installed and configured, you can use the following commands with your AI assistant:
Ask your AI assistant:
"Can you enhance my resume with details from my current project?"
The assistant will:
Ask your AI assistant:
"Can you check if I have a JSON Resume?"
The assistant will check if you have an existing resume and show its details.
Ask your AI assistant:
"What technologies am I using in this project?"
The assistant will analyze your codebase and provide insights about languages, technologies, and recent commits.
The MCP server requires the following environment variables:
| Variable | Description |
|---|---|
GITHUB_TOKEN | Your GitHub personal access token with gist permissions |
GITHUB_USERNAME | Your GitHub username |
OPENAI_API_KEY | Your OpenAI API key |
To run the server in development mode:
git clone https://github.com/jsonresume/mcp.git
cd mcp
npm install
npm run dev
This starts the MCP server with the inspector tool for debugging.
Contributions are welcome! Here's how you can contribute:
git checkout -b feature/amazing-featuregit commit -m 'Add some amazing feature'git push origin feature/amazing-featurePlease ensure your code follows the existing style and includes appropriate tests.
The MCP server includes several test scripts to help debug and verify functionality.
All test scripts are located in the tests/ directory.
Before running tests, set your environment variables:
export GITHUB_TOKEN=your_github_token
export OPENAI_API_KEY=your_openai_api_key
export GITHUB_USERNAME=your_github_username
Validates that your OpenAI API key is working correctly:
npx tsx tests/check-openai.ts
Tests the resume enhancement functionality using mock data (no API calls):
npx tsx tests/debug-mock.ts
Tests the complete resume enhancement process with live API calls:
npx tsx tests/debug-enhance.ts
Tests the MCP server protocol communication:
node tests/test-mcp.js
For convenience, you can add these test commands to your package.json:
"scripts": {
"test:openai": "tsx tests/check-openai.ts",
"test:mock": "tsx tests/debug-mock.ts",
"test:enhance": "tsx tests/debug-enhance.ts",
"test:mcp": "node tests/test-mcp.js"
}
Then run them with npm run test:mock, etc.
This project is licensed under the MIT License - see the LICENSE file for details.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.