{
"mcpServers": {
"job-recommendations-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 128 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
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"
}
}
}