Command Palette

Search for a command to run...

UnylyUnyly
Browse all

RecruiterCheck

FreeNot checked

MCP server for scam-risk checks on job postings, recruiter emails, and company domains.

GitHubEmbed

About

MCP server for scam-risk checks on job postings, recruiter emails, and company domains.

README

RecruiterCheck is an MCP server that helps users quickly assess scam risk in job postings, recruiter emails, and company domains.

What it provides

Tools:

  • check_job_posting_legitimacy
  • check_recruiter_email
  • check_company_domain
  • explain_risk_signals

Each tool:

  • requires an API key
  • returns deterministic risk scoring output
  • persists scan events to Supabase

Repo structure

  • apps/mcp-server: TypeScript MCP server
  • supabase/migrations: SQL migrations
  • apps/landing: minimal landing page
  • registry: registry submission assets

Quick start

  1. Install deps

cd apps/mcp-server npm install

  1. Set env

export SUPABASE_URL="https://.supabase.co" export SUPABASE_SERVICE_ROLE_KEY=""

  1. Build

npm run build

  1. Run server

npm run start

Apply database schema

From repo root:

supabase link --project-ref supabase db push

Migration file applied for MVP:

  • supabase/migrations/202605180001_mvp_core.sql

Creates:

  • public.users
  • public.api_keys
  • public.flagged_domains
  • public.scans

API key model

The server expects apiKey in each tool input. api_keys.key_hash stores SHA-256 of API keys.

Recommended flow:

  1. generate key in your backend
  2. hash with SHA-256
  3. store hash in public.api_keys with user_id
  4. give raw key to customer once

Local smoke test

cd apps/mcp-server node scripts/mcp-smoke.mjs

MCP client config example

Use this in local MCP-capable clients:

{ "mcpServers": { "recruitercheck": { "command": "node", "args": ["/ABSOLUTE/PATH/recruitercheck-mcp/apps/mcp-server/dist/index.js"], "env": { "SUPABASE_URL": "https://.supabase.co", "SUPABASE_SERVICE_ROLE_KEY": "" } } } }

Landing page

Minimal page is at:

  • apps/landing/index.html

Registry assets

See:

  • registry/mcp.json
  • registry/install.md
  • registry/prompts.md
  • registry/submissions.md
  • registry/distribution.md

Hosted MCP endpoint (production)

Status

Roadmap status is tracked in:

  • docs/ROADMAP_MVP.md

from github.com/jesslbrown/recruitercheck-mcp

Installing RecruiterCheck

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/jesslbrown/recruitercheck-mcp

FAQ

Is RecruiterCheck MCP free?

Yes, RecruiterCheck MCP is free — one-click install via Unyly at no cost.

Does RecruiterCheck need an API key?

No, RecruiterCheck runs without API keys or environment variables.

Is RecruiterCheck hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install RecruiterCheck in Claude Desktop, Claude Code or Cursor?

Open RecruiterCheck on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare RecruiterCheck with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs