mcp
A server that enhances AI assistants with the ability to update your JSON Resume by analyzing your coding projects, automatically extracting skills and generating professional descriptions.
A server that enhances AI assistants with the ability to update your JSON Resume by analyzing your coding projects, automatically extracting skills and generating professional descriptions.
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: 1. Find your existing resume on GitHub (or create a new one if needed) 2. Analyze your current project's codebase 3. Generate professional descriptions of your project and skills 4. Update your resume with the new information 5. Save the changes back to GitHub 6. Provide a link to view your updated resume
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:
Clone the repository:
git clone https://github.com/jsonresume/mcp.git
cd mcp
Install dependencies:
npm install
Run in development mode:
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-feature
git commit -m 'Add some amazing feature'
git push origin feature/amazing-feature
Please 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.
[
{
"description": "This is a tool from the github MCP server.nAnalyzes the current codebase and returns information about technologies, languages, and recent commits",
"inputSchema": {
"properties": {
"directory": {
"description": "The directory to analyze. If not provided, uses current working directory.",
"type": "string"
}
},
"required": [],
"type": "object"
},
"name": "github_analyze_codebase"
},
{
"description": "This is a tool from the github MCP server.nChecks if a GitHub user has a JSON Resume and returns its information",
"inputSchema": {
"properties": {},
"required": [],
"type": "object"
},
"name": "github_check_resume"
},
{
"description": "This is a tool from the github MCP server.nEnhances a GitHub user's JSON Resume with information about their current project",
"inputSchema": {
"properties": {
"directory": {
"description": "The directory of the project to analyze. If not provided, uses current working directory.",
"type": "string"
}
},
"required": [],
"type": "object"
},
"name": "github_enhance_resume_with_project"
}
]