shortlisted-mcp-server
v0.1.1
Published
MCP server exposing Shortlisted's resume and cover letter tools to Claude Desktop, Claude Code, and other MCP clients.
Downloads
237
Maintainers
Readme
Shortlisted MCP Server
Lets Claude Desktop, Claude Code, and other MCP clients call Shortlisted's resume tailoring, cover letter, and job search tools.
Tools exposed
| Tool | What it does |
|------|--------------|
| search_jobs | Search Shortlisted's aggregated job feed |
| get_job | Read one job by id |
| get_profile | Fetch the authenticated user's profile + resume |
| match_resume_to_job | Score a resume against a job (strengths/gaps) |
| generate_resume | Generate an AI-tailored resume PDF (base64) |
| generate_cover_letter | Generate a cover letter for a job |
Setup (Claude Desktop)
- Sign in at https://shortlisted.site and copy the
jobsearch_sessioncookie value. - Add to
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"shortlisted": {
"command": "npx",
"args": ["-y", "shortlisted-mcp-server"],
"env": { "SHORTLISTED_SESSION": "<paste_cookie_value>" }
}
}
}- Restart Claude Desktop. Ask: "Use Shortlisted to tailor my resume to job XYZ."
Setup (Claude Code)
claude mcp add shortlisted -- npx -y shortlisted-mcp-serverThen export SHORTLISTED_SESSION in your shell.
Env vars
SHORTLISTED_SESSION(required for tools that touch the user's profile)SHORTLISTED_API_BASE(default:https://jobagent-ten.vercel.app)
