INDIVIDUAL MCP TOOL
crm_get_contact
Read-only full detail of one CRM contact by id (from crm_search_contacts): name, company, job titles, location, LinkedIn, all emails and phones with their labels, tags, resume state, and whether the contact is linked to a CazVid platform user.
Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent endpoint
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.cazvid-mcp]
url = "https://mcp.cazvid.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"cazvid-mcp": {
"type": "http",
"url": "https://mcp.cazvid.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: cazvid-mcp
Remote MCP URL: https://mcp.cazvid.com/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"cazvid-mcp": {
"url": "https://mcp.cazvid.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"cazvid-mcp": {
"type": "http",
"url": "https://mcp.cazvid.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "cazvid-mcp",
"transport": "streamable-http",
"url": "https://mcp.cazvid.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
preview_job— Generate a preview of a job post from a plain-language prompt WITHOUT saving anything.create_job— Create a real job in CazVid from a plain-language prompt.list_api_usage— Show your CazVid Developer API quota for ALL FIVE tool families in one response: Job Builder (preview_job / create_job, 10 per UTC day), Candidate Search (search_candidates, 100 per UTC day), Webhooks (event deliveries, 5,000 per UTC day - list_webhook_endpoints itself is free), Job Search (search_jobs, 500 per UTC day), and CRM (crm_* contact, interaction, and resume tools, 500 per UTC day, plus a separate per-key resume-upload quota).search_candidates— Read-only search of CazVid's candidate database (job seekers) from a plain-language query plus optional structured filters (location, remote-only, video-required, language, created-after date).list_webhook_endpoints— Read-only list of the organization's Developer Webhooks endpoints - the HTTPS receivers CazVid sends signed application.received events to (fired when a candidate applies to one of the org's job posts).search_jobs— Read-only search of CazVid's PUBLIC job posts from a plain-language query plus optional structured filters (location, remote-only, language, posted-after date).crm_search_contacts— Read-only list/search of your organization's CRM contacts with an optional plain-language search (matches name, company, job title, skills, industry, education, email, and phone).crm_upsert_contact— Create a contact in your CRM.