{
"mcpServers": {
"nationalevacaturebank-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 253 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
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.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Nationalevacaturebank 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 Model Context Protocol (MCP) server that provides access to the Nationale Vacaturebank (National Job Bank) API for job searching and location services in the Netherlands.
| Tool | Description | Parameters |
|------|-------------|------------|
| search_function_titles | Search job function titles | query (required) |
| search_city | Search Dutch cities by prefix | startsWith (required) |
| get_geolocation | Get city coordinates | cityName (required) |
| find_jobs | Search job listings | city, jobTitle, latitude, longitude, distance, page, limit, sort |
git clone https://github.com/voyagen/nationalevacaturebank-mcp-server.git
cd nationalevacaturebank-mcp-server
go mod download
go build -o bin/server ./cmd/server
# Run the MCP server
./bin/server
# Or run directly with Go
go run ./cmd/server
The server can be configured using environment variables:
| Variable | Description | Default |
|----------|-------------|---------|
| NVB_BASE_URL | Nationale Vacaturebank API base URL | https://api.nationalevacaturebank.nl |
| NVB_TIMEOUT | HTTP request timeout | 30s |
| LOG_LEVEL | Logging level (info, debug, error) | info |
| MAX_RETRIES | Maximum API retry attempts | 3 |
| SERVER_NAME | MCP server name | Nationale Vacature Bank |
| SERVER_VERSION | MCP server version | 1.0.0 |
export NVB_TIMEOUT=45s
export LOG_LEVEL=debug
export MAX_RETRIES=5
./bin/server
Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"nationalevacaturebank": {
"command": "/path/to/nationalevacaturebank-mcp-server/bin/server",
"env": {
"NVB_TIMEOUT": "30s",
"LOG_LEVEL": "info"
}
}
}
}
// Example MCP tool usage
const jobs = await callTool("find_jobs", {
jobTitle: "frontend developer",
city: "Amsterdam",
limit: 10,
sort: "relevance"
});
// Get Amsterdam coordinates
const location = await callTool("get_geolocation", {
cityName: "Amsterdam"
});
// Returns: { cityCenter: { latitude: 52.3676, longitude: 4.9041 }, cityName: "Amsterdam" }
// Search for developer-related functions
const functions = await callTool("search_function_titles", {
query: "developer"
});
// Returns: { suggestions: ["Frontend Developer", "Backend Developer", "Full Stack Developer", ...] }
The project follows Go best practices with a clean architecture:
├── cmd/server/ # Application entry point
├── internal/
│ ├── api/ # HTTP client and error handling
│ ├── config/ # Configuration management
│ ├── handlers/ # MCP tool handlers
│ └── server/ # MCP server setup
├── pkg/nvb/ # Public types and interfaces
└── bin/ # Compiled binaries