Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"jobsuche": {
"args": [
"@wunderfrucht/jobsuche-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An AI-friendly job search integration server using the Model Context Protocol (MCP). This server provides tools for searching German job listings via the Federal Employment Agency (Bundesagentur für Arbeit) 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.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
App framework, testing framework, and inspector for MCP Apps.
MCP proxy that compresses prose fields (tool descriptions, etc.) using caveman rules. Same accuracy, fewer context tokens.
MCP Security Weekly
Get CVE alerts and security updates for Jobsuche Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An AI-friendly job search integration server using the Model Context Protocol (MCP). This server provides tools for searching German job listings via the Federal Employment Agency (Bundesagentur für Arbeit) API.
jobsuche crate for reliable API accessnpm install -g @wunderfrucht/jobsuche-mcp-server
git clone https://github.com/wunderfrucht/jobsuche-mcp-server.git
cd jobsuche-mcp-server
cargo build --release
The server uses environment variables for configuration (all optional):
JOBSUCHE_API_URL: API base URL (default: official Bundesagentur für Arbeit API)JOBSUCHE_API_KEY: Custom API key (default: public API key)JOBSUCHE_DEFAULT_PAGE_SIZE: Default results per page (default: 25)JOBSUCHE_MAX_PAGE_SIZE: Maximum results per page (default: 100)Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"jobsuche": {
"command": "npx",
"args": ["@wunderfrucht/jobsuche-mcp-server"]
}
}
}
Or using local binary:
{
"mcpServers": {
"jobsuche": {
"command": "/path/to/jobsuche-mcp-server"
}
}
}
Add to your Continue configuration:
{
"mcpServers": {
"jobsuche": {
"command": "npx",
"args": ["@wunderfrucht/jobsuche-mcp-server"]
}
}
}
search_jobsSearch for jobs in Germany using various filters.
Note: For most use cases, consider using search_jobs_with_details or batch_search_jobs instead, as they are more efficient for AI workflows.
Parameters:
job_title (optional): Job title or keywords (e.g., "Software Engineer", "Data Scientist")location (optional): Location name (e.g., "Berlin", "München", "Deutschland")radius_km (optional): Search radius in kilometers from the locationemployment_type (optional): Employment type filter
"fulltime", "parttime", "mini_job", "home_office", "shift"contract_type (optional): Contract type filter
"permanent", "temporary"published_since_days (optional): Days since publication (0-100, default: 30)page_size (optional): Number of results per page (1-100)page (optional): Page number for pagination (starting from 1)employer (optional): Employer name to search for (e.g., "BARMER", "Siemens")branch (optional): Industry/branch to search in (e.g., "IT", "Gesundheitswesen")Examples:
{
"job_title": "Software Engineer",
"location": "Berlin",
"employment_type": ["fulltime"]
}
{
"location": "München",
"published_since_days": 7,
"radius_km": 50
}
{
"job_title": "Data Scientist",
"location": "Deutschland",
"employment_type": ["fulltime", "parttime"],
"page_size": 50
}
{
"employer": "BARMER",
"location": "Wuppertal",
"employment_type": ["parttime"]
}
get_job_detailsGet detailed information about a specific job posting.
Parameters:
reference_number (required): Job reference number from search resultsExample:
{
"reference_number": "10001-1234567890-S"
}
search_jobs_with_details ⭐ RECOMMENDEDSearch for jobs and automatically fetch full details for top results in a single operation.
Why use this? Combines search_jobs + mult