Developer
Manage your API keys to access Hunt UK Visa Sponsors data programmatically. View API docs • View MCP tool reference
Log in to create and manage your API keys for programmatic access.
Connect your API key to Claude Desktop, Cursor, or any MCP-compatible AI client. This lets AI assistants search jobs, look up companies, and check visa sponsorship data on your behalf.
Claude Desktop
Claude Desktop only supports local (stdio) MCP servers, so we use mcp-remote as a bridge. Requires Node.js 18+. Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"huntukvisasponsors": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"https://api.huntukvisasponsors.com/mcp/v1",
"--header",
"Authorization: Bearer YOUR_API_KEY"
]
}
}
}Then restart Claude Desktop. If you use nvm and see “Unexpected token” errors in ~/Library/Logs/Claude/, replace "npx" with the absolute path to your Node 20+ node binary and pass the mcp-remote script path as the first arg.
Claude Code / Cursor / other clients
Clients that support remote HTTP MCP servers natively can use this simpler config (Claude Code: .claude/settings.json):
{
"mcpServers": {
"huntukvisasponsors": {
"type": "http",
"url": "https://api.huntukvisasponsors.com/mcp/v1",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Available tools
search_jobs - Search for UK visa sponsorship job listings.search_companies - Search for UK companies that are licensed visa sponsors.get_job_facets - Get available filter facets for job search, including location counts, company sizes, industries, and posted-within options.get_company_facets - Get available filter facets for company search, including location counts, company sizes, industries, and visa types.search_locations - Search for job locations by name.get_company - Get detailed information about a specific company including address, visa types, SIC codes, job count, and sponsor score.get_company_jobs - List job postings from a specific company and its related entities (canonical group).get_company_visa_stats - Get visa issuance statistics (trends) for a specific company.+ 9 more tools (17 total). See full reference
Authentication: Pass your key as a Bearer token: Authorization: Bearer huvs_...
Rate limit: 0 credits/month. Costs vary by endpoint (1-5 credits).
Base URL: https://api.huntukvisasponsors.com/public/v1