loading…
Search for a command to run...
loading…
An MCP server for managing career experience data using the JSON Resume schema with custom extensions. It enables AI agents to store, update, and retrieve detai
An MCP server for managing career experience data using the JSON Resume schema with custom extensions. It enables AI agents to store, update, and retrieve detailed work history, projects, and achievements to facilitate tailored resume generation.
A Model Context Protocol (MCP) server for managing JSON Resume data with MCP extensions. This server provides tools for storing and managing comprehensive career experience data that can be used to generate tailored resumes.
uv sync
{
"mcpServers": {
"resumejson-mcp": {
"command": "uv",
"args": [
"--directory",
"/path/to/resumejson-mcp",
"run",
"resumejson-mcp"
]
}
}
}
/path/to/resumejson-mcp with the actual path to your cloned repositoryThe MCP server provides the following tools:
get_all_work - List all work positionsget_work_by_id - Get details of a specific positionadd_work - Add a new work position with bullets and projectsupdate_work - Update an existing positiondelete_work - Remove a positionadd_bullet_to_work - Add a single bullet to a positionadd_major_project_to_work - Add a major project to a positionexperience://data/experience.json - Access the complete experience data fileExperience data is stored in ~/.resumejson-mcp/experience/experience.json following the JSON Resume schema with MCP extensions:
{
"basics": { /* name, email, phone, location, profiles */ },
"work": [
{
"name": "Company Name",
"position": "Job Title",
"startDate": "2020-01",
"endDate": "2023-12",
"summary": "Role description",
"url": "https://company.com",
"location": "City, State",
"mcp-details": {
"id": "unique-id",
"bullets": [
{ "id": "bullet-1", "text": "Accomplishment", "tags": ["skill"] }
],
"major_projects": [
{
"id": "project-1",
"name": "Project Name",
"summary": "What you built and your role",
"technologies": ["Python", "FastAPI"],
"outcomes": "Results and metrics",
"tags": ["backend"]
}
],
"tags": ["python", "api"]
}
}
],
"education": [],
"skills": [],
"projects": []
}
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"resumejson-mcp": {
"command": "npx",
"args": []
}
}
}