de-job-intelligence
Allows exporting tailored resumes by executing Google Docs API batch updates, replacing template tokens, and returning a verified document edit link.
Integrates with Google Drive v3 API for OAuth 2.0 authenticated document cloning and template management used during resume synthesis.
Allows coordinating rate-paced background job evaluations with Google Gemini for generative job-fit evaluation and tailoring.
Provides tools for retrieving job details and context from PostgreSQL, including metadata, raw job text, and evaluation queue status for prompt preparation.
Click on "Deploy 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., "@de-job-intelligenceTailor my resume for job ID 48291 and export it to Google Docs"
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.
de-job-intelligence: Autonomous Job Market Intelligence & Agentic Synthesis Platform
An enterprise-grade, event-driven data platform and agentic workflow engine designed to monitor technical job markets, evaluate technical alignment through deterministic RAG frameworks, and orchestrate automated document synthesis via the Model Context Protocol (MCP) and Google Workspace APIs.
Built with Python 3.12, Starlette, PostgreSQL (Psycopg 3 with connection pooling), and Google Gemini, this platform replaces brittle prompt engineering with a decoupled, bounded-context architecture featuring strict schema validation, defensive synthesis fallbacks, and micro-batch worker pipelines.
π System Architecture
The platform decouples transient web extraction, persistence, deterministic retrieval-augmented generation (RAG), and external agent protocols into clean bounded contexts:
ββββββββββββββββββββββββββββ
β External Job APIs (Dice) β
βββββββββββββββ¬βββββββββββββ
β
βΌ
ββββββββββββββββββββββββββββ
β src/ingestion/ β
β (REST Ingestion Client)β
βββββββββββββββ¬βββββββββββββ
β (Idempotent Upsert)
βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β PostgreSQL 16 Storage (saved_jobs) β
β Managed via psycopg_pool.ConnectionPool β
βββββββββ¬ββββββββββββββββββββββββββββββββ¬βββββββββββββββββββββββββββββββ¬βββββββ
β β β
βΌ (Queue: PENDING/FAILED) βΌ (Audit & Queries) βΌ (Job Fetching)
ββββββββββββββββββββββββ βββββββββββββββββββββββββββββ ββββββββββββββββββββββββββ
β src/workers/ β β src/dashboard/ β β src/engine/ β
β - backfill_worker β β - Starlette UI (Port 5001β β - matcher.py (Scorer) β
β - batch_ingestion β β - Tailwind CSS + Jinja2 β β - prompt_builder.py β
β - Gemini LLM Pacing β β - Skill Gap Audit Matrix β β - analyzer.py β
ββββββββββββββββββββββββ βββββββββββββββββββββββββββββ βββββββββββββ¬βββββββββββββ
β
βΌ
ββββββββββββββββββββββββββββββββββ
β Model Context Protocol (MCP) β
β src/protocols/ (Port 8000) β
β - JSON-RPC 2.0 Dispatcher β
β - Non-blocking asyncio.to_thr β
βββββββββββββββββ¬βββββββββββββββββ
β
ββββββββββββββββββββββββββββββββββ΄βββββββββββββββββ
β Tool 1: Context RAG β Tool 2: Document Synthesis
βΌ βΌ
βββββββββββββββββββββββββββββββ ββββββββββββββββββββββββββββββββ
β 5-Phase Knowledge Graph β β src/synthesis/ β
β - Dynamic Phase Weighting β β - resume_mapper.py β
β - Core DE Phase Suppression β β - gdrive_docs.py β
β - Static Tool Bridging β β - Google Docs Batch Replacerβ
βββββββββββββββββββββββββββββββ ββββββββββββββββ¬ββββββββββββββββ
β (OAuth 2.0 API)
βΌ
ββββββββββββββββββββββββββββββββ
β Production Tailored Resume β
β (Google Docs Edit URL) β
ββββββββββββββββββββββββββββββββ
Related MCP server: career-agent
π‘ Core Engineering Highlights
1. Deterministic RAG vs. Generative Hallucination
Standard LLM resume customization frequently invents metrics, hallucinates tool proficiencies, or shifts focus away from core backend responsibilities. This platform enforces deterministic grounding:
5-Phase Architectural Knowledge Graph (
company_frameworks.json): Every career tenure is mapped across Ingestion & Streaming, Lakehouse Landing, Distributed Transformations (Spark/Databricks), Orchestration & Data Modeling, and Semantic Serving.Dynamic Phase Weighting Policy: Backend evaluation detects the target archetype. For Core Data Engineering roles, the engine strictly suppresses Phase 5 (BI/dashboards) and forces 85%+ of generated content into distributed compute, partition pruning, memory tuning, and CDC patterns.
Strict Tool Bridging: Maps unmentioned candidate tools to their exact architectural equivalents (e.g., Kafka maps strictly to Kinesis/Databricks Streaming; dbt maps strictly to SQL transformation layers) without inventing experience.
2. Model Context Protocol (MCP) Integration
Implements a Starlette JSON-RPC 2.0 server adhering to open Model Context Protocol standards. Exposes operational primitives directly to AI agents:
prepare_job_tailoring_prompt: Ingests PostgreSQL job context, executes heuristic scoring, applies dynamic phase suppression, and packages full prompt context.export_tailored_resume: Consumes structured JSON from the reasoning model, validates profile invariant truths, executes Google Docs API batch updates, and returns a verified document link.get_job_details: Exposes metadata and raw text for targeted inspection.retry_job_evaluations: Coordinates rate-paced background evaluations for pending queues.
3. Resilient Google Docs Document Synthesis
Google XYZ Formula Enforcement: Ensures bullets adhere to "Accomplished [X], measured by [Y], by doing [Z]".
Defensive Fallback Mechanism: If an LLM drops bullet points or returns a truncated payload,
resume_mapper.pyautomatically injects verified master profile bullets for missing sections, preventing broken template tokens ({{TOKEN}}) from reaching production artifacts.Markdown Stripping & Batch Replacement: Cleans markdown artifacts (
**bold**, bullet points) and dispatches atomic batch requests over Google Docs REST API (documents().batchUpdate).
4. High-Throughput Asynchronous Concurrency
Database Connection Pooling: PostgreSQL connections managed through
psycopg_pool.ConnectionPool(min_size=1, max_size=10), eliminating connection overhead and memory exhaustion.Non-Blocking Thread Delegation: Heavy external network calls (Google Docs API batch calls, database cursors, file I/O) are systematically offloaded via
asyncio.to_thread, keeping Starletteβs event loop available for inbound RPC traffic.Rate-Paced Worker Queues: LLM backfill workers utilize deterministic pacing delays and state-machine transitions (
PENDING$\rightarrow$PROCESSED$\rightarrow$FAILED) to stay within Google Gemini API quota limits without stalling pipelines.
π Tech Stack
Domain | Technology | Purpose |
Runtime & Language | Python 3.12 | Core platform language |
API & Protocol Server | Starlette, Uvicorn | High-performance ASGI runtime, JSON-RPC 2.0 MCP server |
Database & Pooling | PostgreSQL 16, Psycopg 3 ( | Relational persistence, JSONB metadata, thread-safe pooling |
LLM & Heuristics | Google Gemini API ( | Heuristic regex matching and generative evaluation |
External Synthesis | Google Workspace APIs (Docs & Drive v3) | OAuth 2.0 authenticated document cloning and batch text replacement |
UI & Observability | Jinja2, Tailwind CSS | Live pipeline dashboard and AI skill gap audit interface |
Testing & CI/CD | Pytest, AnyIO, Ruff, GitHub Actions | Integration/unit test suites and automated pull-request validation |
Containerization | Docker, Docker Compose | Multi-stage container builds and microservice orchestration |
π Repository Structure
de-job-intelligence/
βββ .github/
β βββ workflows/
β βββ ci.yml # Automated Pytest and Ruff linting pipeline
βββ config/
β βββ company_frameworks.json # 5-Phase data engineering lifecycle knowledge graphs
β βββ resumes/
β β βββ resume_de.md # Candidate master profile context
β βββ roles/
β βββ data_engineering.json# Skill schemas, phase weighting policies, heuristics
βββ logs/ # Server output logs and daemon PID files
βββ src/
β βββ core/
β β βββ config.py # Pydantic Settings with .env loading
β β βββ database.py # Psycopg 3 connection pool and atomic query helpers
β β βββ utils.py # File system and profile cache loaders
β βββ dashboard/
β β βββ templates/
β β β βββ dashboard.html # Real-time job ingestion ledger and filter UI
β β β βββ audit.html # Skill matrix & gap audit interface
β β βββ app.py # Starlette dashboard backend & /api/jobs REST router
β βββ engine/
β β βββ analyzer.py # Google Gemini structured evaluation client
β β βββ matcher.py # Heuristic regex skill scoring engine
β β βββ prompt_builder.py # Deterministic RAG builder with phase weighting
β βββ ingestion/
β β βββ dice_client.py # REST API client for job search normalization
β β βββ scraper.py # HTML sanitization & DOM text extraction
β βββ protocols/
β β βββ app.py # MCP JSON-RPC 2.0 server (tools/list, tools/call)
β β βββ dispatcher.py # Asynchronous tool router (asyncio.to_thread)
β β βββ schemas.py # JSON Schema manifests for all MCP tools
β βββ synthesis/
β β βββ gdrive_docs.py # Google Drive copy & Docs batchUpdate engine
β β βββ resume_mapper.py # Defensive fallback injector & token replacer
β βββ workers/
β βββ backfill_worker.py # Paced queue worker for LLM scoring backfills
β βββ batch_ingestion.py # Job ingestion & heuristic upsert pipeline
β βββ pipeline_utils.py # Database state-machine update operations
βββ tests/
β βββ test_ingestion.py # Mock tests for REST client and persistence
β βββ test_prompt_builder.py # RAG framework and token caching validation
β βββ test_protocol.py # Starlette JSON-RPC handshake & tool dispatch tests
β βββ test_synthesis.py # Fallback resilience & token sanitization tests
β βββ test_workers.py # Worker queue and database mock verification
βββ Dockerfile # Multi-stage lean Python 3.12 container definition
βββ docker-compose.yml # Multi-service orchestration (Postgres, MCP, Dashboard)
βββ pyproject.toml # Poetry/pip standard build dependencies & pytest config
βββ start_server.sh # macOS/Linux daemon lifecycle startup script
βββ stop_server.sh # Clean PID termination and fallback port release script
π MCP Protocol Specification
The MCP Server implements JSON-RPC 2.0 at http://localhost:8000/rpc. Below are the primary tool contracts exposed to reasoning agents:
1. prepare_job_tailoring_prompt
Fetches a target job record from PostgreSQL, calculates baseline skill alignment, checks for BI/reporting keywords to trigger Phase 5 suppression, and packages company frameworks.
Arguments:
{"job_id": "string"}Response:
{
"job_metadata": { "job_id": "dice_123", "title": "Senior Data Engineer", "company": "Acme" },
"job_description": "...",
"base_resume": "...",
"tailoring_guidelines": {
"dynamic_phase_weighting_policy": "SUPPRESS Phase 5 (BI) unless explicitly demanded...",
"company_architectural_frameworks": { ... }
}
}
2. export_tailored_resume
Ingests the LLMβs tailored JSON payload, validates each role against master profile facts, fills any dropped bullets using the defensive fallback engine, clones the Google Doc template, and returns an edit link.
Arguments:
{
"document_title": "Sri Omkar Dumpa - Lead Data Engineer",
"llm_payload": {
"professional_summary": "Data Engineer with 8+ years experience...",
"technical_skills": { "cloud": "AWS, Azure", "bigdata": "Spark, Databricks" },
"experience": {
"herc": [
"Optimized Spark SQL jobs, reducing runtime by 30% through partition pruning."
]
}
}
}
Response:
{
"status": "success",
"document_url": "https://docs.google.com/document/d/1bIC23.../edit",
"message": "Resume successfully generated and formatted in Google Docs."
}
β‘ Quickstart Guide
1. Clone & Environment Configuration
git clone https://github.com/your-username/de-job-intelligence.git
cd de-job-intelligence
python3.12 -m venv venv
source venv/bin/activate
pip install -e ".[dev]"
2. Environment Variables Setup
Create .env in the project root:
# Database Settings
DB_HOST=localhost
DB_PORT=5432
DB_NAME=job_scout_db
DB_USER=postgres
DB_PASSWORD=your_password
# Google Gemini API
GEMINI_API_KEY=your_gemini_api_key
# Google Workspace Integration
GOOGLE_DOCS_TEMPLATE_ID=your_google_doc_template_id
# Server Ports
MCP_SERVER_PORT=8000
DASHBOARD_PORT=5001
Place your authorized credentials.json and generated token.json in the project root to enable Google Drive & Google Docs synthesis.
3. Verify Test Suite (12 Passing Tests)
Execute the complete test suite verifying ingestion, prompting, synthesis fallbacks, and protocol routing:
python -m pytest tests/ -v
tests/test_ingestion.py::test_dice_client_search_jobs PASSED [ 8%]
tests/test_ingestion.py::test_persist_jobs_batch PASSED [ 16%]
tests/test_prompt_builder.py::test_configurations_load PASSED [ 25%]
tests/test_prompt_builder.py::test_resume_caching PASSED [ 33%]
tests/test_prompt_builder.py::test_skill_matcher PASSED [ 41%]
tests/test_protocol.py::test_health_endpoint PASSED [ 50%]
tests/test_protocol.py::test_mcp_initialize PASSED [ 58%]
tests/test_protocol.py::test_mcp_tools_list PASSED [ 66%]
tests/test_protocol.py::test_dispatcher_unknown_tool PASSED [ 75%]
tests/test_synthesis.py::test_resume_mapper_fallback_resilience PASSED [ 83%]
tests/test_workers.py::test_get_unprocessed_jobs PASSED [ 91%]
tests/test_workers.py::test_run_backfill_batch_flow PASSED [100%]
============================= 12 passed in 0.51s ==============================
π Execution & Operations
Local Daemon Management
The platform provides production process management via shell scripts that handle PID tracking and port allocation:
# Start MCP Protocol Server (Port 8000) & Observability Dashboard (Port 5001)
./start_server.sh
# Check Service Health
curl http://localhost:8000/health
# {"status":"healthy","service":"de-job-intelligence-mcp","version":"1.0.0"}
# Stop all background services cleanly
./stop_server.sh
Docker Compose Deployment
Run the complete stack (PostgreSQL database, MCP protocol server, and observability dashboard) in isolated containers:
docker compose up -d --build
Access the user interfaces and services:
Observability Dashboard:
http://localhost:5001MCP Protocol Gateway:
http://localhost:8000/rpcHealth Check Probe:
http://localhost:8000/health
π Live Observability & Skill Audit
The dashboard (src/dashboard/) provides real-time visibility into your job search pipeline:
Active Ledger View (
/): Displays categorized jobs, heuristic fit scores, date posted, employment type, visa sponsorship status, and direct application links.Dynamic Client Filtering: Filter real-time records by post date (Today, Past 3 Days, Past Week), database ingestion timestamp (Swept Today, Past 24h), and source (Dice, LinkedIn, Indeed).
AI Skill Gap Audit (
/audit?category=data_engineering): Evaluates market demand across all ingested listings against candidate resume skills, categorizing technologies into:
π’ Matched Skills (e.g., Spark, Python, AWS, Snowflake, Airflow)
π΄ Missing Skills (e.g., Kafka, Go, Kubernetes)
β¨ AI Extracted Technologies (e.g., Iceberg, Polars, Trino)
π Security & Data Governance
Zero Secret Leakage: Strict
.gitignoreboundaries protect.env,credentials.json,token.json, and process logs from version control tracking.Deterministic Profile Invariants: The synthesis mapper protects candidate name, email, phone number, education, and company tenures against LLM rewriting or hallucination.
Idempotent Storage Patterns: Ingestion pipelines use PostgreSQL
ON CONFLICT (job_id) DO NOTHINGconstraints to prevent duplicate writes and race conditions during high-volume ingestion sweeps.
This server cannot be deployed
Maintenance
Related MCP Connectors
Manage job applications β jobs, companies, boards, notes, and profile β from your AI client.
Analyze job listings against your resume, track applications, and generate cover letters.
Generate tailored, ATS-optimized resume PDFs and cover letters from a job description, over MCP.
CareerProof MCP gives AI agents direct access to a professional-grade career and workforce intelligence platform. Two namespaces: atlas_* for HR/TA teams (candidate evaluation, batch shortlisting, competency scoring, interview generation, JD analysis, custom eval frameworks, research reports) and ceevee_* for professionals (CV optimization, career positioning, salary intelligence, market reports). Backed by RAG knowledge from 50+ premium research sources (McKinsey, BCG, HBR, Gartner, WEF)
Related MCP Servers
AlicenseAqualityAmaintenanceResume tailoring, cover letter generation, CV PDF export, and job search tools for AI agents. 18 tools powered by the Laddro Career API.18212MIT- FlicenseNot gradedqualityBmaintenanceEnables Claude Desktop to manage a job search end-to-end: find and score job listings, tailor resumes, generate application messages, and track application history, while leaving final external actions to the user.-
- FlicenseNot gradedqualityBmaintenanceEnables AI agents to evaluate candidates against job requirements and retrieve evaluation results through MCP tools.-
- AlicenseNot gradedqualityBmaintenanceEnables LLM clients to analyse job postings, tailor resumes from an evidence-labelled profile, validate every claim against that profile, and track applications, all through deterministic MCP tools.Apache 2.0