careerproof-mcp
Provides tools for indexing GitHub repositories and extracting verified evidence such as commits, pull requests, architecture docs, and dependency manifests for interview preparation and job-requirement matching.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@careerproof-mcpAnalyse this Solutions Architect JD and map my GitHub projects to each requirement."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
careerproof-mcp
Evidence-backed interview preparation through the Model Context Protocol.
CareerProof turns a candidate's real project history — GitHub repositories, a CV, and project notes — into interview preparation that is traceable to specific evidence: commits, pull requests, architecture docs, and dependency manifests. Every answer it helps produce distinguishes between:
Verified evidence — pulled directly from GitHub
Reasonable inference — evidence added manually, not independently verified
User-provided claim — extracted from the candidate's own CV
Missing evidence — explicitly flagged, never silently invented
Why
Ask a connected MCP client:
Analyse this Solutions Architect job description and show me where my GitHub projects prove each requirement.
and get back a requirement-by-requirement match, each one backed by a cited source:
Job requirement | Match | Supporting evidence |
Power Platform | Strong | CertMate workflow documentation |
API architecture | Strong | REST integration and service-layer code |
SQL | Strong | Database schema and stored procedures |
CI/CD | Weak | GitHub Actions exists but deployment evidence is limited |
Team leadership | Unproven | No evidence found in the supplied sources |
See docs/demonstration.md for a full walkthrough and
examples/sample-evidence-report.json
for a complete sample response.
Related MCP server: Interview Prep MCP Agent
Design principle: no LLM in v1
CareerProof deliberately does not call an LLM API. Job description parsing
and requirement matching use bullet parsing, a curated keyword dictionary, and
token-overlap scoring. STAR-answer generation builds a cited outline, not
prose. The connected MCP client (Claude Desktop, VS Code Copilot, etc.)
supplies the language reasoning on top of this server's structured, traceable
evidence — which keeps the server cheap, private, and easy to self-host.
See docs/architecture.md for the full rationale.
MCP primitives
Tools (11) — actions such as indexing repositories, analysing job descriptions, matching requirements, generating STAR outlines, and exporting a preparation pack:
careerproof_add_candidate_profile, careerproof_index_repository,
careerproof_add_project_evidence, careerproof_analyse_job_description,
careerproof_match_requirements, careerproof_find_evidence,
careerproof_generate_star_answer, careerproof_find_evidence_gaps,
careerproof_generate_interview_questions, careerproof_score_interview_answer,
careerproof_export_preparation_pack
Resources (5) — read-only, application-controlled views:
careerproof://candidate/profile, careerproof://jobs/{jobId},
careerproof://projects/{projectId}, careerproof://evidence/{evidenceId},
careerproof://skills/matrix
Prompts (5) — reusable, host-surfaced workflows:
prepare_for_interview, create_star_answer, challenge_cv_claim,
run_mock_technical_interview, identify_portfolio_gaps
Quick start
npm install
npm run build
npm start # runs dist/server.js over stdioOr run directly from source during development:
npm run devTry it with the MCP Inspector:
npx @modelcontextprotocol/inspector npx tsx src/server.tsRegister with an MCP host
Point your host at the built server (see mcp.json for a
ready-made config):
{
"mcpServers": {
"careerproof": {
"command": "node",
"args": ["dist/server.js"],
"env": { "CAREERPROOF_DB_PATH": "./data/careerproof.db" }
}
}
}Environment variables
Variable | Purpose | Default |
| Path to the local SQLite database |
|
| Optional GitHub token for higher API rate limits / private repos | unset (public, unauthenticated) |
Example tool call
{
"tool": "careerproof_generate_star_answer",
"arguments": {
"competency": "Describe a time you designed a complex solution",
"project": "CertMate EICR",
"maximumWords": 250
}
}{
"answer": {
"situation": "...",
"task": "...",
"action": "...",
"result": "..."
},
"confidence": 0.84,
"evidence": [
{ "source": "docs/architecture.md", "lines": "18-42", "type": "verified" }
],
"missingInformation": [
"No measurable performance improvement was documented"
]
}Repository structure
careerproof-mcp/
├── src/
│ ├── server.ts # entry point (stdio transport)
│ ├── tools/ # 11 MCP tools
│ ├── resources/ # 5 MCP resources
│ ├── prompts/ # 5 MCP prompts
│ ├── github/ # GitHub REST client + repository indexer
│ ├── evidence/ # CV parsing, evidence store, export pack
│ ├── matching/ # requirement extraction, matching, STAR/gap/question logic
│ └── database/ # Drizzle schema + SQLite client
├── examples/ # sample CV, job description, evidence report
├── evals/ # judgement evals for the matching logic
├── tests/ # Vitest unit + MCP protocol tests
├── docs/ # architecture, threat model, demonstration walkthrough
├── Dockerfile
├── mcp.json
└── README.mdDevelopment
npm test # vitest unit + protocol tests
npm run lint # tsc --noEmit
npx tsx evals/requirement-matching.eval.ts # judgement evalDocker
docker build -t careerproof-mcp .
docker run -i -v careerproof-data:/data careerproof-mcpThe server speaks stdio, so docker run -i (interactive, no TTY) is how an
MCP host would launch it as a subprocess.
Roadmap
Streamable HTTP transport + OAuth for a remotely-hosted deployment
Optional local embeddings for semantic evidence search
PDF CV import
Docs
License
MIT
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Job search and interview prep MCP. 11 tools, OAuth 2.1, cross-LLM. four-leaf.ai.
Generate tailored, ATS-optimized resume PDFs and cover letters from a job description, over MCP.
Screens public GitHub repos and PRs to generate risk maps, findings, and merge-readiness signals.
Job application tracker for developers - AI agents write over MCP, you review in a dashboard.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceTurns raw engineering signals into narrative reports by exposing GitHub data via MCP, enabling AI agents to generate structured, shareable engineering summaries.11Apache 2.0
- AlicenseAqualityCmaintenanceEnables interview preparation by analyzing resumes and job descriptions, generating role-specific questions, and evaluating answers using MCP tools integrated with an OpenAI agent.5MIT
- AlicenseNot gradedqualityDmaintenanceProvides AI coding agents with structured intelligence about any GitHub repository including overview, PRs, contributors, hot files, CI status, and dependencies via a hosted MCP endpoint.18MIT
- AlicenseNot gradedqualityBmaintenanceEnables JD-aware resume matching through MCP tools, providing deterministic scoring, gap analysis, bullet rewrites, and tailored cover letter generation.3MIT
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/detonnate/careerproof-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server