resume-mcp-server
The resume-mcp-server provides structured access to a collection of job application documents (resumes, cover letters, application materials) with tools for browsing, searching, and extracting detailed information.
Document Browsing
List all documents, optionally filtered by type (
resume,cover_letter,application_material,other)List lightweight resume summaries (ID, name, email, phone) for token-efficient orientation
Retrieve the full extracted text of any document by path
Get a resume's structured profile (contact info, professional statement, education) without nested data
Searching
Full-text search across all documents by keyword or phrase, with optional type filtering
Search resumes by person name (partial match supported)
Search resumes by badge skill (e.g., find everyone who lists "Python")
Search badge skills/technologies by title keyword
Work Experience & Achievements
List and retrieve individual work experience entries, optionally filtered by resume or current roles
Search work experiences by company name, position title, or achievement content
List, retrieve, and directly search achievement bullets for token-efficient matching
Skills & Projects
List and retrieve badge skills (technologies, tools, languages), optionally scoped to one resume
Search side projects by name, description, or associated technologies
Education
Search education entries by institution, degree, or competencies
The server supports common document formats (.docx, .pdf, .md, .txt), auto-parses files on startup with hot-reload on changes, and integrates with AI clients like Claude Desktop, Claude Code, and VS Code via HTTP or stdio transport.
resume-mcp-server
An MCP server that gives Claude (or any MCP client) structured, searchable access to your resume collection — resumes, cover letters, and application materials in .docx, .pdf, .md, or .txt format.
Job seekers accumulate document sprawl fast: multiple resume versions tailored to different roles, cover letter drafts, reference sheets. Manually digging through them to draft a new application is tedious. Point this server at your resume folder and Claude can answer questions like "which of my resumes highlights Kubernetes experience?", "what achievements have I listed across my backend roles?", or "draft a cover letter drawing from my work at Acme Corp" — without you pasting anything.
The server parses each document into structured data (contact info, work history, education, skills, side projects) and exposes 20 tools covering full-text search, skill lookup, company and role queries, achievement mining, education search, ATS-style job-match ranking, collection analytics, and more. Files are watched and re-indexed automatically, so edits to your documents are reflected immediately.
Features
Multi-format parsing —
.docx,.pdf,.md, and.txtdocuments are parsed into structured data: contact info, work history, education, skills, and side projects.Automatic de-duplication — resumes for the same person across multiple files (e.g. a
.docxand a.pdfof the same resume) are matched by email or name and collapsed to the richest copy, so search and analytics aren't skewed by duplicates.Automatic hot-reload — a filesystem watcher re-indexes your documents as soon as they change, no server restart needed.
Document type inference — files are automatically classified as
resume,cover_letter,application_material, orotherbased on filename patterns, which can be overridden per category via environment variables.Full-text and structured search — search whole documents with
search_resumes, or filter any entity type (skills, work experience, achievements, side projects, education) with a scopedquery,technology, orcompetencyparameter.Three search modes —
and,or, andregexmatching, available consistently on every tool that accepts a query-like parameter.Uniform pagination — every list-style tool returns the same
total_count/items/has_more/next_offset/messageenvelope, with validatedlimit/offsetand a 200-item cap.Unified error shape — every failure returns
{"error": "..."}, so callers only need to check for one shape regardless of which tool they called.Collection analytics —
get_collection_statsandget_skill_frequencysurface aggregate counts and cross-resume skill popularity.ATS-style job-match ranking —
list_ranked_resumesscores every resume against a pasted job description (fuzzy skill matching plus keyword coverage) and ranks them best-match-first; match strictness and score weighting are tunable per call.Read-only and safe by construction — every tool is annotated
readOnlyHint/idempotentHint/openWorldHint: false; nothing mutates your files or reaches outside the local document collection.Flexible deployment — run over stdio or HTTP, standalone or via Docker/Docker Compose with CORS support, configured through environment variables or a
.envfile.
See MCP Tools below for the full list of tools this exposes. For best extraction quality, see the Resume Formatting Guide.
Related MCP server: NOUZ MCP Server
Quick Start
Give Claude structured access to your resume collection. The server parses your documents on startup and exposes 20 tools for searching by name, company, skill, education, side project, or full text, ranking resumes against a job description, plus analytics tools for skill frequency and collection statistics — with automatic hot-reload when files change.
Try it immediately with the included sample resumes:
pip install resume-mcp-server
RESUME_DIR=./sample_resumes resume-mcp-serverThen connect Claude Code:
claude mcp add resume-mcp-server resume-mcp-server -e RESUME_DIR=$(pwd)/sample_resumesFor a persistent setup with Docker or your own documents, see Docker Deploy or Dev Environment.
Docker Deploy
The recommended way to run the server. Docker Compose exposes the server over HTTP so any AI client can connect to it.
1. Set your resume directory
Copy the example env file and set your documents path:
cp .env.example .env
# then edit RESUME_DIR_HOST in .env2. Sync the image version (optional)
Stamp the image with the current pyproject.toml version:
python scripts/sync_version.py3. Build and start
docker compose build resume-mcp
docker compose up -dThe server is now available at http://localhost:8001/mcp.
4. Connect your AI client
Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"resume-mcp-server": {
"type": "http",
"url": "http://localhost:8001/mcp"
}
}
}VS Code (.vscode/mcp.json):
{
"servers": {
"resume-mcp-server": {
"type": "http",
"url": "http://localhost:8001/mcp"
}
}
}Claude Code:
claude mcp add resume-mcp-server --transport http http://localhost:8001/mcpTo add it globally across all projects, add the following to ~/.claude.json instead:
{
"mcpServers": {
"resume-mcp-server": {
"type": "http",
"url": "http://localhost:8001/mcp"
}
}
}Stopping
docker compose downDocker (stdio)
Run the image directly — no Compose needed — for MCP clients that use stdio transport (including Glama.ai and Claude Desktop):
docker run -i --rm -v /path/to/your/resumes:/resumes resume-mcp-serverClaude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"resume-mcp-server": {
"command": "docker",
"args": ["run", "-i", "--rm", "-v", "/path/to/your/resumes:/resumes", "resume-mcp-server"]
}
}
}Dev Environment
For local development or running the server without Docker.
Prerequisites
Python 3.12+
Install
pip install .
# include test dependencies:
pip install ".[dev]"Run
resume-mcp-server
# with a custom directory:
RESUME_DIR=/path/to/docs resume-mcp-serverOr create a .env file in the directory you run the server from:
# .env
RESUME_DIR=/path/to/docs
FASTMCP_PORT=8001Then just run resume-mcp-server — the .env is loaded automatically. Variables already set in your shell or by the MCP client always take precedence over .env values.
Connect your AI client (stdio)
Claude Desktop:
{
"mcpServers": {
"resume-mcp-server": {
"command": "resume-mcp-server",
"env": {
"RESUME_DIR": "/path/to/your/resumes"
}
}
}
}If resume-mcp-server is not on your PATH, use the full path (e.g. ~/.venv/bin/resume-mcp-server).
Claude Code:
claude mcp add resume-mcp-server resume-mcp-server -e RESUME_DIR=/path/to/your/resumesuvx:
{
"mcpServers": {
"resume-mcp-server": {
"command": "uvx",
"args": ["resume-mcp-server"],
"env": {
"RESUME_DIR": "/path/to/your/resumes"
}
}
}
}Configuration
Docker Compose (.env):
Variable | Description |
| Path on your machine to the documents directory — mounted to |
| Port the HTTP server listens on (default |
| Logging verbosity: |
Local run (environment variables or .env):
Variable | Default | Description |
|
| Directory scanned for documents |
|
| Transport protocol ( |
|
| Bind address |
|
| Port the HTTP server listens on |
|
| Regex used to classify a filename as |
|
| Regex used to classify a filename as |
|
| Regex used to classify a filename as |
A .env file in the working directory is loaded automatically on startup if present. Shell environment variables and values set by the MCP client always take precedence over .env values.
Each DOC_TYPE_PATTERN_* variable replaces the default regex for that category (filenames are matched in order: resume, then cover letter, then application material, then everything else falls back to other). Leave a variable unset to keep its default; an invalid regex is ignored and the default is used instead.
The server scans RESUME_DIR recursively on startup and reloads automatically when files change.
Document type inference
Types are inferred from filenames:
Type | Filename patterns |
| contains |
|
|
|
|
| everything else |
Each of the three regexes can be overridden with DOC_TYPE_PATTERN_RESUME, DOC_TYPE_PATTERN_COVER_LETTER, and DOC_TYPE_PATTERN_APPLICATION_MATERIAL — see Configuration.
Search behavior
Most tools that accept a query (or technology/competency) parameter split it on whitespace and support three match modes via the optional mode parameter:
| Behavior |
| All tokens must appear within the same field. |
| Any token is sufficient. |
| The query is compiled as-is (not tokenized or escaped) into a case-insensitive regular expression and matched against the field. Use this for grep-style power — alternation, wildcards, anchors, etc., e.g. |
Multi-field note: For tools that search several fields (company name, position title, achievement text, etc.), AND mode requires all tokens to co-occur in the same field, not spread across fields. Use OR mode when you want a looser cross-field match. Regex mode also matches per-field.
Single-word queries behave identically in and/or mode.
Every tool that accepts a query-like parameter — including search_resumes, the whole-document keyword search — shares this same "and"/"or"/"regex" vocabulary.
search_resumes_by_skill accepts either a single skill string or a list of skills. For a list, mode does double duty: it also controls whether a resume must match EACH skill in the list ("and") or ANY skill ("or"); "regex" mode combines multiple skills with OR semantics.
An empty query or an empty skill list returns {"error": "..."} rather than an empty result — this distinguishes a caller mistake from a legitimate zero-match search.
Pagination
All list_* tools (and search_resumes/search_resumes_by_skill) accept limit and offset parameters and return a consistent envelope:
{
"total_count": 247,
"items": [...],
"has_more": true,
"next_offset": 100,
"message": "100 of 247 results shown. Call again with offset=100 to see more."
}total_count is the full match count before slicing. has_more and next_offset tell you directly whether to page further — no need to compute offset + len(items) < total_count yourself — and message restates that in plain language, ready to act on. When there's nothing left, has_more is false, next_offset is null, and message reads "All N results shown.".
limit must be greater than 0 and offset must be 0 or greater — otherwise the tool returns {"error": "..."}. An offset beyond the total result count is not an error; it's a valid "past the end" page (items: [], has_more: false).
Cap and defaults. limit is silently capped at 200 regardless of what's requested — if you ask for more, the response still comes back (not an error), but message is prefixed with "Requested limit N capped to 200." so you know it happened. Default limit varies by tool, generally lower for heavier, deeply-nested responses:
Tool | Default |
| 10 (each item is a fully nested resume) |
| 25 |
| 50 |
| 100 |
| 20 (not part of the pagination envelope, but shares the same 200 cap) |
Error handling
Every tool returns a dict. On failure, the dict is exactly {"error": "<message>"} — this is the only failure shape in the API, so a caller can check for the "error" key regardless of which tool it called. This covers: not-found IDs, a resume_id filter that doesn't match any resume, invalid regex patterns, and invalid limit/offset values. A resume_id filter that does match a resume but simply has zero matching child records (e.g. list_work_experiences(resume_id=<valid>) for someone with no work history) is not an error — it returns an empty items list.
get_resume's success shape is {"text": "..."} so that success and failure are both dicts, distinguishable by key.
MCP Tools
20 tools are exposed, covering full-text search, skill lookup, company and role queries, achievement mining, education search, ATS-style job-match ranking, collection analytics, and more. Every tool is read-only (readOnlyHint: true) — none mutate state or reach outside the local document collection (openWorldHint: false).
Tool | Description |
| Lightweight identity records (id, name, email, phone) for orienting before fetching details; optional |
| A resume's top-level fields (contact info, statement, education) without nested lists |
| A resume's complete nested structure (work experiences, skills, side projects, education) in one call |
| List all documents, optionally filtered by type |
| Full extracted text of a document, keyed by path (not resume_id) |
| Full-text search across all documents, sorted by match count |
| List badge skills, optionally scoped to a resume and/or filtered by title |
| A single badge skill by ID |
| Find which resumes list one or more given badge skills (accepts a string or a list) |
| Badge skills ranked by how many resumes list them |
| Rank every resume against a pasted job description (fuzzy skill match + keyword coverage) |
| List work experiences, optionally scoped to a resume, current-only, and/or a keyword query |
| A single work experience entry with its achievement bullets |
| List achievement bullets, optionally scoped to a resume and/or a keyword query |
| A single achievement bullet by ID |
| List side projects, optionally scoped to a resume and/or matched by keyword or technology |
| A single side project by ID, including demonstrated technologies |
| List education entries, optionally scoped to a resume and/or matched by keyword or competency |
| A single education entry by ID, including its competencies |
| Aggregate counts and averages across the entire loaded collection |
See docs/TOOLS.md for full parameter tables and return shapes for every tool.
Maintenance
Related MCP Servers
- Alicense-qualityDmaintenanceEnables Claude to intelligently query and analyze your resume using RAG technology. Supports skill matching against job requirements and answering questions about your professional background from locally stored resume files.Last updatedMIT
- AlicenseAqualityAmaintenanceMCP Server for local knowledge management. Semantic + keywords + tagsLast updated818MIT
- AlicenseAqualityDmaintenanceAn MCP server for intelligent LaTeX resume generation with multiple templates, quality scoring, and job description tailoring.Last updated11MIT
- Flicense-qualityCmaintenanceAn MCP server that provides a structured API for AI agents to query a person's resume, including profile, projects, writing, and gated access to experience and skills.Last updated
Related MCP Connectors
GetJobzi MCP server for job search, application tracking, and career forecasting.
MCP server for accessing curated awesome list documentation
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mnoomnoo/resume-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server