Dice
Dice — the US technology-only job board.
Dice — the US technology-only job board. Reaches each posting's full description and skill list through Dice's own keyless MCP server at mcp.dice.com/mcp; declares tech-job search, posting-detail reads, employer profiles and a company's open roles.
Domain: dice.com
Also known as: Dice, Dice.com, DHI Group, DHI Group, Inc., Dice Tech
Call it directly
bowmark.providers.dice.searchJobs(query: string): Promise<DiceSearchResponse>
bowmark.providers.dice.getJob(jobId: string): Promise<DiceJobDetails>Functions
| Function | What it does |
|---|---|
searchJobs | Searches Dice tech-job database for postings matching the query keyword. |
getJob | Returns one Dice posting in full — the HTML description (the same document the consumer page renders) and the normalized skills array — by the job id searchJobs returns. |
Types
interface DiceSearchResult {
id: string;
title: string;
companyName: string;
location: string;
salary?: string;
employmentType: string;
workplaceType: string;
postedDate: string;
isRemote: boolean;
willingSponsor: boolean;
easyApply: boolean;
}
interface DiceSearchResponse {
jobs: DiceSearchResult[];
totalResults: number;
currentPage: number;
pageCount: number;
warnings: string[];
}
interface DiceJobDetails {
jobId: string;
description: string;
skills: string[];
warnings: string[];
}
interface diceRow {
id: string;
}