Resume MCP Server

by raeeceip

184 downloads
Not rated
GitHub

Description

# 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. ##…

About

# 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…

Details

Author
raeeceip
Downloads
184
Categories
Other

- MCP compliant, following the Model Context Protocol specification
- Interactive resume queryable by AI assistants
- Globally available via Cloudflare Workers with low latency
- Structured data for natural conversations
- Seven built-in tools for querying resume sections

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Resume MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Clone the repository, run npm install to install dependencies, then start a local dev server with npm run dev. Deploy globally using npm run deploy. To connect an AI assistant (e.g., Claude Desktop), update the client configuration to point to the server’s SSE endpoint (e.g., https://resume-mcp-server.your-username.workers.dev/sse) using the mcp-remote command. Test the server with the MCP Inspector (npx @modelcontextprotocol/inspector@latest).

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "resume mcp server": {
            "resume-mcp-server": {
                "command": "npx",
                "args": [
                    "@modelcontextprotocol/inspector@latest"
                ]
            }
        }
    }
}

McpServers

{
    "resume-mcp-server": {
        "command": "npx",
        "args": [
            "@modelcontextprotocol/inspector@latest"
        ]
    }
}

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

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.