resume-mcp-server

raeeceip/resume-mcp-server

3.2

If you are the rightful owner of resume-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

This project transforms a resume into an interactive Model Context Protocol (MCP) server, allowing AI assistants to query professional experience, skills, and projects in a structured manner.

Tools
7
Resources
0
Prompts
0

Resume MCP Server

This project transforms my resume into an interactive Model Context Protocol (MCP) server deployed on Cloudflare Workers. When AI assistants connect to this MCP server, they can query my professional experience, skills, and projects in a structured way.

Features

  • MCP Compliant: Follows the Model Context Protocol specification
  • Interactive Resume: AI assistants can query specific parts of my resume
  • Cloudflare Deployment: Globally available with low latency
  • Structured Data: Organized resume information for natural conversations

Available Tools

  • getBasicInfo: Get basic personal and educational information
  • getWorkExperience: Get detailed work experience, optionally filtered by company
  • getProjects: Get details about personal projects, optionally filtered by technology
  • getSkills: Get technical skills by category
  • getOpenSourceWork: Get details about open source contributions
  • searchResume: Search for keywords across the entire resume
  • generateFormattedResume: Generate a formatted version of the resume

Setup and Deployment

Prerequisites

  • Node.js and npm
  • Cloudflare account
  • Wrangler CLI (npm install -g wrangler)

Local Development

  1. Clone this repository
  2. Install dependencies:
    npm install
    
  3. Start the development server:
    npm run dev
    
  4. Your MCP server will be available at http://localhost:8787/sse

Testing with MCP Inspector

You can test your MCP server using the MCP Inspector tool:

npx @modelcontextprotocol/inspector@latest

Open your browser to http://localhost:5173 and connect to your MCP server URL.

Deployment to Cloudflare

Deploy your MCP server to Cloudflare Workers:

npm run deploy

After deployment, your MCP server will be accessible at https://resume-mcp-server.your-username.workers.dev/sse.

Configuring Claude to Use Your MCP Server

Update your Claude Desktop configuration to point to your MCP server:

{
	"mcpServers": {
		"resume": {
			"command": "npx",
			"args": [
				"mcp-remote",
				"https://resume-mcp-server.your-username.workers.dev/sse"
			]
		}
	}
}

Restart Claude Desktop after updating your config file to load the MCP Server.

Project Structure

  • src/index.ts: Main application entry point and MCP tool definitions
  • src/resume-data.ts: Structured resume data
  • wrangler.toml: Cloudflare Workers configuration
  • package.json: Project dependencies and scripts
  • tsconfig.json: TypeScript configuration

Adding Authentication (Optional)

If you want to add authentication to your MCP server, follow these steps:

  1. Create a new project using the GitHub OAuth template:

    npm create cloudflare@latest -- resume-mcp-server-auth --template=cloudflare/ai/demos/remote-mcp-github-oauth
    
  2. Create GitHub OAuth Apps for both local development and production.

  3. Add the client ID and secret to your environment variables.

  4. Update your MCP server code to use the OAuth provider.

License

MIT

Author

Chisom Chibogu