Developers
Jobvetta MCP server
Search vetted India jobs from your AI assistant.
Jobvetta speaks the Model Context Protocol, so Claude, Cursor, and any MCP client can search live India openings gathered from official employer sources: by keyword, Indian city or state, and posting age (for example, jobs posted in the last two days). One key covers MCP and the REST API, with a shared limit of 50 tool calls per day and up to 20 jobs per search.
Get a key
Sign in and copy your key from the dashboard's MCP page. Free during early access.
Get your key →Claude Code
Run this in a terminal:
claude mcp add --transport http jobvetta https://api.jobvetta.com/mcp --header "Authorization: Bearer YOUR_KEY"
Claude Desktop
Add to claude_desktop_config.json (Settings → Developer → Edit Config), then restart Claude Desktop:
{
"mcpServers": {
"jobvetta": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://api.jobvetta.com/mcp",
"--header", "Authorization: Bearer YOUR_KEY"]
}
}
}Cursor
Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"jobvetta": {
"url": "https://api.jobvetta.com/mcp",
"headers": { "Authorization": "Bearer YOUR_KEY" }
}
}
}Other clients
Any MCP client that supports streamable HTTP works: point it at https://api.jobvetta.com/mcp and send the header Authorization: Bearer <your key>.
Prefer plain REST?
The same capabilities are available as a REST API.