Resume StaticMCP Generator
A Rust tool that generates StaticMCP from resume data, enabling AI assistants to efficiently access and analyze professional information through pre-computed resources and tools.
Features
- Static Generation: Pre-computes all MCP resources and tool results for instant access
- Relationship Analysis: Automatically builds indexes linking skills, projects, and experiences
- Skill Clustering: Identifies frequently co-occurring skills across projects
- Cross-References: Maps relationships between projects, experiences, and skills
Note: You'll still need a StaticMCP bridge to connect this to an AI.
Installation
Prerequisites
- Rust 1.70+ with Cargo
Install from Cargo
Build from Source
Usage
1. Create Configuration File
Create a config.json file with your resume data:
2. Generate Static Site
# Using default paths
# Or specify custom paths
3. Host the Generated Site
The generated static files can be hosted on any web server or CDN (GitHub Pages, Netlify, etc.):
Generated Structure
dist/
├── mcp.json # MCP manifest
├── resources/ # Static resources
│ ├── info.json
│ ├── experiences.json
│ ├── projects.json
│ └── skills.json
├── tools/ # Pre-computed tool results
│ ├── get_skills_for_project/
│ ├── get_projects_using_skill/
│ ├── get_experiences_using_skill/
│ ├── get_shared_skills/
│ └── find_skill_clusters.json
└── indexes/ # Lookup indexes
├── skill_to_projects.json
├── skill_to_experiences.json
└── project_to_experiences.json
MCP Resources
The generated MCP server provides these resources:
resume://info- Personal information and contact detailsresume://experiences- Complete list of work experiencesresume://projects- Complete list of projectsresume://skills- Complete list of skills
MCP Tools
Pre-computed tools for complex queries:
get_skills_for_project- Get all skills used in a specific projectget_projects_using_skill- Get all projects that use a specific skillget_experiences_using_skill- Get all experiences involving a specific skillget_shared_skills- Get skills shared between two projectsfind_skill_clusters- Find clusters of skills that frequently appear together (includes both skill pairs and full skill sets)
Data Model
Configuration Structure
- Config: Top-level configuration with port, resume data, and optional password
- Resume: Contains personal info, experiences, projects, and skills
- PersonalInfo: Basic contact information and social links
- Experience: Work experience with date ranges and associated projects
- Project: Individual project with description, duration, and required skills
- Skill: Technical or soft skill with categorization
Relationships
- Experiences contain multiple Projects (many-to-many)
- Projects require multiple Skills (many-to-many)
- Skills are categorized by type and category
- Automatic indexing creates reverse lookups for efficient querying
Testing
Run the test suite: