Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"resume-matcher": {
"args": [
"-jar",
"C:\\Workspace\\mcp\\job-recommendations-mcp-server\\build\\libs\\job-recommendations-mcp-server-0.0.1.jar"
],
"command": "java"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Spring Boot-based Model Context Protocol (MCP) server that provides intelligent resume analysis and job matching capabilities using AI embeddings and the JSearch API.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@modelcontextprotocol/inspector' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
MCP Inspector is Vulnerable to Potential Command Execution via XSS When Connecting to an Untrusted MCP Server
An XSS flaw exists in the MCP Inspector local development tool when it renders a redirect URL returned by a remote MCP server. If the Inspector connects to an untrusted server, a crafted redirect can inject script into the Inspector context and, via the built-in proxy, be leveraged to trigger arbitrary command execution on the developer machine. Version 0.16.6 hardens URL handling/validation and prevents script execution. > Thank you to the following researchers for their reports and contributi
MCP Inspector proxy server lacks authentication between the Inspector client and proxy
Versions of MCP Inspector below 0.14.1 are vulnerable to remote code execution due to lack of authentication between the Inspector client and proxy, allowing unauthenticated requests to launch MCP commands over stdio. Users should immediately upgrade to version 0.14.1 or later to address these vulnerabilities. Credit: Rémy Marot <bughunters@tenable.com>
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
Autonomous spec-to-product coding-agent CLI with an MCP server exposing 34 tools over stdio.
MCP Security Weekly
Get CVE alerts and security updates for Job Recommendations Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Spring Boot-based Model Context Protocol (MCP) server that provides intelligent resume analysis and job matching capabilities using AI embeddings and the JSearch API.
This MCP server enables AI assistants (like Claude Desktop, Cline) to:
┌─────────────────────┐
│ Claude Desktop / │
│ Cline (MCP Client) │
└──────────┬──────────┘
│ SSE/STDIO
▼
┌─────────────────────┐
│ MCP Server │
│ (Spring Boot) │
├─────────────────────┤
│ • ResumeTools │
│ • MatchingTools │
│ • CourseService │
└──────────┬──────────┘
│
┌──────┴──────┐
▼ ▼
┌─────────┐ ┌──────────┐
│ Vector │ │ JSearch │
│ Store │ │ API │
│(In-Mem) │ │(RapidAPI)│
└─────────┘ └──────────┘
git clone <repository-url>
cd job-recommendations-mcp-server
copy .env.example .env
.env and add your RapidAPI key:JSEARCH_API_KEY=your_actual_rapidapi_key_here
JSEARCH_API_HOST=jsearch.p.rapidapi.com
Get your API key from: https://rapidapi.com/letscrape-6bRBa3QguO5/api/jsearch
# Windows
gradlew.bat clean bootJar
# Unix/Linux/Mac
./gradlew clean bootJar
The JAR will be created at: build/libs/job-recommendations-mcp-server-0.0.1.jar
Configuration:
application.propertiesspring.main.web-application-type=noneClaude Desktop Config (claude_desktop_config.json):
{
"mcpServers": {
"resume-matcher": {
"command": "java",
"args": [
"-jar",
"C:\\Workspace\\mcp\\job-recommendations-mcp-server\\build\\libs\\job-recommendations-mcp-server-0.0.1.jar"
]
}
}
}
Configuration:
application.properties (SSE enabled)http://localhost:8080Run the server:
java -jar build/libs/job-recommendations-mcp-server-0.0.1.jar
Claude Desktop Config:
{
"mcpServers": {
"resume-matcher": {
"url": "http://localhost:8080/sse"
}
}
}
For Cline (VS Code): Add to VS Code settings.json:
{
"cline.mcpServers": {
"resume-matcher": {
"url": "http://localhost:8080/sse"
}
}
}