Dice MCP Server
Official Dice MCP server providing real-time, natural-language access to Dice's technology-focused job database for AI assistants.
The Dice MCP server is the official Model Context Protocol integration from Dice.com, a technology-focused job board operated by DHI Group. It exposes Dice's tech job database to AI assistants such as Claude, ChatGPT (in Developer Mode), and the Gemini CLI, allowing users to run natural-language job searches and apply advanced filters without leaving their chat interface.
The server is provider-hosted at https://mcp.dice.com/mcp using Streamable HTTP transport, and requires no authentication or account to connect. The primary capability is a search_jobs tool that supports rich filtering, including keyword, location and radius, workplace type (remote, on-site, hybrid), employment type (full-time, contract, part-time, third-party), posted date window, visa sponsorship availability, and easy-apply flag. Responses include job titles, companies, locations, salary ranges where listed, required skills, application links, and posting dates.
Notable aspects: it is officially maintained by Dice (GitHub org DiceHoldingsInc), it is free to use, it does not store search history, and it accesses only publicly available job listings. It is one of the few official MCP servers in the recruiting and tech-jobs space.
Tools
| Tool | Description |
|---|---|
search_jobs |
Search Dice's technology job database with natural language and structured filters. Returns job titles, companies, locations, salary ranges, required skills, application links, and posting dates. |
The Dice MCP server is hosted by Dice. No install, no API key, no account required. Just point your MCP client at https://mcp.dice.com/mcp.
Claude (Pro/Team/Enterprise)
Web/Mobile:
- Open "Search and tools" then "Add connectors"
- Search for "Dice" and click "Connect"
- Toggle it on in conversations from "Search and tools"
Claude Desktop config location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
ChatGPT (Plus/Pro/Business/Enterprise)
- Enable Developer Mode in Settings, Apps & Connectors
- Create a connector with URL
https://mcp.dice.com/mcp - Select SSE (Server-Sent Events) transport
- No authentication required
- Use in a Developer Mode chat
Gemini CLI
Edit ~/.gemini/settings.json (macOS/Linux) or $env:USERPROFILE\.gemini\settings.json (Windows):
{
"mcpServers": {
"dice": {
"url": "https://mcp.dice.com/mcp"
}
}
}
Verify with:
/mcp list
Generic MCP client config
{
"mcpServers": {
"dice": {
"url": "https://mcp.dice.com/mcp",
"transport": "http"
}
}
}
- Run natural-language searches like "remote Python developer roles posted in the last 3 days with visa sponsorship" without learning Dice's UI filters
- Build a daily morning digest of new tech postings matching a saved profile, delivered through your AI assistant
- Skills gap analysis: pull job listings for a target role and summarize the most frequently required skills and tools
- Salary benchmarking across cities or workplace types for a given role
- Track market trends by monitoring how often specific technologies appear in current postings
- "Find senior backend engineer roles in Denver within 25 miles, full-time only."
- "Show me remote Python developer jobs posted in the last 3 days that offer visa sponsorship."
- "Search Dice for 'platform engineer' jobs and list the 10 most common required skills."
- "Compare salary ranges for staff iOS engineer roles in NYC, Austin, and Seattle."
- "Get me contract data engineering roles with easy apply, posted within the last week."
- Official server maintained by Dice (DHI Group), not a community scraper
- Free with no authentication required, works out of the box across Claude, ChatGPT, and Gemini CLI
- Rich filter set including workplace type, employment type, sponsorship, and easy-apply
- Tech-focused listings, useful signal for software, data, and infrastructure roles
- Single tool (
search_jobs); no endpoints for applying, saving jobs, viewing full job descriptions in detail, or managing a Dice account - Scoped to Dice's tech listings only, not a general job aggregator
- Does not persist search history, so iterative or scheduled workflows must keep state on the client side
- LinkedIn Jobs (no official MCP server; community implementations exist on GitHub)
- Indeed (no official MCP; some community Apify-based MCP wrappers exist)
- Apify "Dice Jobs Scraper" MCP, an unofficial scraper-based alternative if you need to script around Dice without the official server