AVA
MCP server for recruiting pipeline that evaluates resumes against job descriptions, syncs to Google Sheets, and drafts emails via Gmail.
README
Model Context Protocol (MCP)
How to run this example
- Clone this repo
- Install uv if you haven't already
# Mac/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
- Test the server in dev mode
uv run mcp dev mcp-server-example.py
-
Add server config to your AI app.
Cursor: The config is already in this repo at
.cursor/mcp.json. Cursor reads that file when you open this project. If youruvor project path is different, edit.cursor/mcp.jsonand updatecommand(path touv) andargs[1](path to this repo). Then restart Cursor (or reload the window) so it picks up the MCP server. MCP tools run in Agent/Composer mode.Alternative in Cursor (UI): Open Settings (
Cmd + ,/Ctrl + ,) → Tools & MCP → Add new MCP server. Set name toAVA, type to command, command to the full path touv(e.g./Users/sobby/.local/bin/uv), and args to:--directory,/Users/sobby/Workspace/mcp-demo,run,mcp-server-example.py(exact order). Save and restart Cursor.Claude Desktop: Put the same JSON under the MCP config file used by Claude Desktop (see Claude Desktop MCP docs).
{
"mcpServers": {
"AVA": {
"command": "/path/to/uv",
"args": ["--directory", "/path/to/mcp-demo", "run", "mcp-server-example.py"]
}
}
}
Recruiting pipeline (MVP)
Trigger: upload new resumes to a directory. No Gmail read. You provide:
- applicants.csv — columns: Name, Email, LinkedIn, Resume name, Job (optional). Job = job ID (filename stem in
jobs/, e.g.senior-software-engineerorproduct-manager). Defaults tosenior-software-engineerif missing. Add a row when you add a new resume. - resumes/ — one file per resume; filenames must match "Resume name" in the CSV (e.g.
jane-doe-sse.txt). - jobs/ — one
.mdfile per role (e.g.senior-software-engineer.md,product-manager.md). The job ID is the filename without.md. Each applicant is evaluated against the job indicated in their CSV row. - linkedin/ — (optional, for demo) One
.mdfile per candidate; filename = resume stem without extension (e.g.jane-doe-sse.md). Used to compare resume vs LinkedIn when you ask: theread_linkedin(resume_name)tool loads a profile; comparison appears in the evaluation response. - A Google Sheet with a tab named "Candidates" (or set
GOOGLE_SHEET_NAME) and headers: Name, Email, Job Applied, AI Score, Key Strengths, Gaps, Recommended Action, Status.
Flow:
- Upload new resume(s) to
resumes/and add the corresponding row(s) toapplicants.csv. Optionally add a matching file inlinkedin/(e.g.jane-doe-sse.md) so evaluation can compare resume vs LinkedIn when you ask. - Ask AVA to "Process new applications" (or "Sync applicants to the sheet"). AVA runs
process_new_applications(): evaluates each applicant and adds or updates rows. For LinkedIn comparison, ask explicitly (e.g. "Process new applications and compare with LinkedIn"). - Open the sheet, filter/sort by score, strengths, gaps, status.
- Ask AVA to draft email only for the candidates you choose (e.g. "Draft email to Jane Doe", "Create drafts for these 5"). AVA creates Gmail drafts; you send after review.
Email draft template: Drafts use the template in email-templates/candidate-draft.txt (greeting, body from the evaluator, sign-off). Edit that file to change wording; set RECRUITER_NAME in .env for the sign-off name.
LinkedIn comparison (demo, opt-in)
The read_linkedin(resume_name) tool reads a markdown file from linkedin/ whose filename matches the resume stem (e.g. jane-doe-sse.md for jane-doe-sse.txt). LinkedIn is only used when you explicitly ask for it: use evaluate_candidate_with_linkedin or process_new_applications_with_linkedin (e.g. "evaluate Jane Doe and compare with her LinkedIn"). The comparison appears in the evaluation response (linkedin_notes); it is not written to the Google Sheet. No real LinkedIn API is used; the demo uses sample .md profiles in linkedin/.
Customizing AVA's Behavior
Update Personal Details and Preferences
- Locate the
prompts/ava.mdfile in your project directory - Customize the file with:
- Communication preferences
- Specific instructions for handling tasks
- Any other relevant guidelines for AVA
Environment Setup (.env)
- Create a
.envfile in the root directory of the project with the following variables:
USER_EMAIL=your_email_address
# Google OAuth Credentials
GOOGLE_CREDENTIALS_PATH=.config/ava-agent/credentials.json
GOOGLE_TOKEN_PATH=.config/ava-agent/token.json
# Recruiting pipeline (MVP) — Claude for evaluation
ANTHROPIC_API_KEY=your_anthropic_api_key
ANTHROPIC_MODEL=claude-3-5-haiku-20241022
GOOGLE_SHEET_ID=your_google_sheet_id
RECRUITER_NAME=Your Name
RESUME_DIR=resumes
APPLICANTS_CSV=applicants.csv
Required Environment Variables:
USER_EMAIL: The Gmail address you want to use for this applicationGOOGLE_CREDENTIALS_PATH: Path to your Google OAuth credentials fileGOOGLE_TOKEN_PATH: Path where the Google OAuth token will be storedANTHROPIC_API_KEY(orCLAUDE_API_KEY): For candidate evaluation via Claude (recruiting pipeline)GOOGLE_SHEET_ID: Spreadsheet ID for the candidate tracking sheet (recruiting; create the sheet first and use the ID from the URL)RECRUITER_NAME: Name used in draft email sign-off (e.g. "Jane Smith"). Optional; defaults to "The Hiring Team"
Google OAuth Setup
1. Create Project Directory Structure
First, create the required directory structure:
mkdir -p .config/ava-agent
2. Set Up Google Cloud Project
- Go to the Google Cloud Console
- Create a new project or select an existing one
- Enable APIs:
- In the navigation menu, go to "APIs & Services" > "Library"
- Enable Gmail API (search "Gmail API" > Enable)
- Enable Google Sheets API (search "Google Sheets API" > Enable)
3. Create OAuth Credentials
-
In the Google Cloud Console:
- Go to "APIs & Services" > "Credentials"
- Click "Create Credentials" > "OAuth client ID"
- Choose "Desktop application" as the application type
- Give it a name (e.g., "AVA Gmail Client")
- Click "Create"
-
Download the credentials:
- After creation, click "Download JSON"
- Save the downloaded file as
credentials.jsonin.config/ava-agent/ - The file should contain your client ID and client secret
4. Configure OAuth Consent Screen
- In the Google Cloud Console:
- Go to "APIs & Services" > "OAuth consent screen"
- Choose "External" user type
- Fill in the required information:
- App name
- User support email
- Developer contact information
- Add scopes:
https://www.googleapis.com/auth/gmail.composeandhttps://www.googleapis.com/auth/spreadsheets - Add your email as a test user
- Complete the configuration
Note: If you add the Sheets scope after already having a token, delete token.json and run uv run oauth.py again.
Signing into Google
Before the server can access you Gmail account you will need to authorize it. You can do this by running uv run oauth.py which does the following.
- Check for the presence of
token.json - If not found, it will initiate the Google OAuth authentication flow
- Guide you through the authentication process in your browser:
- You'll be asked to sign in to your Google account
- Grant the requested permissions
- The application will automatically save the token
- Generate and store the token automatically
Security Notes
File Protection
- Never commit your
.envfile ortoken.jsonto version control - Keep your Google credentials secure
- Add the following to your
.gitignore:.env .config/ava-agent/token.json .config/ava-agent/credentials.json
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.