Project Management

Huntr MCP Server

Connect your account, then chat with AI to run tools.

Huntr for Organizations is a career placement platform used by bootcamps, universities, workforce-development agencies, career coaches, and outplacement services to track members' job searches, manage candidate profiles, share job posts, run goals, and capture activities.

Managed
31 tools
Agent guide included

Opens MCPBundles Studio with this server selected. After sign-in, chat and run tools from the same thread.

Browse all tools

AI Skill
SKILL.md

Domain knowledge for Huntr — workflow patterns, data models, and gotchas for your AI agent.

Huntr for Organizations

Huntr for Organizations powers advisor dashboards that track job seekers ("members") through their job search. The org API is read/write across the entities that appear in those dashboards. It is not the consumer Huntr app for individual job seekers — it only works for accounts on Huntr's organization (advisor) plan.

Core entities

  • Advisors — staff/coaches inside the organization who manage members.
  • Members — job seekers in the organization. Members can have member field values populated from the org's custom Member Fields, and can be grouped into Member Groups.
  • Organization Invitations — pending invitations sent to prospective members; an invitation can pre-assign a board template, member field values, and an advisor.
  • Candidates — talent-portal profiles tied to a member (resume, headline, work history, salary expectations, location, role/industry preferences). Each candidate has Candidate Action Metrics (counts of actions by type and timeframe).
  • Board Templates — pipeline templates applied to new member boards.
  • Jobs — application cards a member is tracking on their board.
  • Job Posts — opportunities posted to the org's white-labeled job board, optionally shared with specific members or member groups.
  • Tags — labels applied to job posts.
  • Activities — to-do/done items on a board (Apply, Phone Interview, Offer Received, etc.) classified by Activity Categories.
  • Actions — append-only audit feed of what happened in the org (e.g. JOB_CREATED, ACTIVITY_CREATED, NOTE_CREATED). The Events resource is deprecated; use Actions instead.
  • Notes — internal member notes written by advisors.
  • Goals — recurring or one-time objectives (e.g. "5 applies per week"). Members participate via Goal Enrollments, which produce Goal Progresses per interval.
  • Employers — companies attached to jobs/job posts, optionally marked as partners.
  • Webhooks — Huntr can POST signed action payloads to a configured URL when actions occur.

What you can do

  • Read: list/inspect advisors, members (and a single member), member groups, member fields, candidates (and candidate action metrics), board templates, jobs, job posts, tags, activities, activity categories, actions, internal member notes, goals, and employers. All list endpoints support cursor pagination via next and a limit (default 100, max 500 on candidates).
  • Filter: members by active; candidates by email/memberId; jobs by owner/creator/created window; activities and actions by owner/creator/job/category/employer/created window; actions also by action_type/activity_id/note_id/contact_id.
  • Write: invite a member to the organization; create a member field; update a member's member-field value; create a job post and (optionally) share it on creation with members or member groups; bulk-send existing job posts to members; create tags; create and delete internal member notes; enroll a member in a goal.

Pagination and shape

  • Most list endpoints return { "data": [...], "next": "<cursor>" }. Pass that cursor back as next to fetch the next page. limit defaults to 100.
  • Tags are returned as a bare array, not a {data, next} envelope.

Common workflows

  • New cohort: list member-groups → create custom member-fields → invite each job seeker via an organization invitation pre-populated with boardTemplateId, memberFieldValues, and advisorEmail.
  • Track engagement: poll actions (filtered by created_after) to ingest a real-time-ish feed of what members and advisors are doing, or register a webhook on the advisor portal.
  • Run a goal: list goals → enroll selected members via goal enrollments → monitor progress through the resulting goal-progress and action records.
  • Share opportunities: create a job-post with memberEntries to push it to a list of members on creation, or use the job-posts/send-to-members endpoint to fan out existing job posts to additional members.
  • Manage candidate pipeline: list candidates, drill into a single candidate, then pull candidate-action-metrics to see how active they have been.

Important constraints

  • Events are deprecated. Use Actions for both CRUD-type and real-world (activity-derived) events. The Events resource will not gain new event types.
  • Members and candidates are distinct: every candidate belongs to a member, but not every member has a candidate profile.
  • Tag targetObjects is currently always JOB_POST.
  • Goal enrollmentType of MANUAL requires explicit goal-enrollment creation per member.
  • Webhook payloads use HMAC SHA-256; signatures must be validated against the per-webhook secret revealed in the advisor portal Developers tab.

Tools in this Server (31)

Huntr Create Goal Enrollment

Enroll a member in a goal. Specify the member by id or email.

Huntr Create Job Post

Create a job post on the organization's job board. Provide either `employerId` or an `employer` object (with at least `domain`). Optionally fan out to...

Huntr Create Member Field

Create a new custom member field for the organization. Names must be unique. Provide choices for MULTIPLE_CHOICE/MULTIPLE_SELECT field types.

Huntr Create Member Note

Create a new internal note attached to a member. The note is private to org staff and visible in the member's profile in the advisor dashboard.

Huntr Create Organization Invitation

Send an organization invitation to a job seeker. Optionally pre-assign a board template, member field values, and an advisor.

Huntr Create Tag

Create a new organization tag (currently scoped to JOB_POST target objects).

Huntr Delete Member Note

Delete an internal member note. Returns the deleted note record.

Huntr Get Candidate

Retrieve a single candidate profile by id.

Huntr Get Candidate Action Metrics

Retrieve aggregated action metrics (counts of actions by type and timeframe) for a single candidate.

Huntr Get Goal

Retrieve a single goal by id, including schedule, recurrence, current interval, and objective conditions.

Huntr Get Job

Retrieve a single job by id.

Huntr Get Job Post

Retrieve a single job post by id.

Huntr Get Member

Retrieve a single member (job seeker) by id.

Huntr List Actions

List the organization's audit feed of actions (CRUD-type and activity-derived events) sorted from most recently created to oldest. Use this instead of...

Huntr List Activities

List activities (Apply, Phone Interview, Offer Received, etc.) across the organization, with filters by owner/creator/job/category/employer/created wi...

Huntr List Activity Categories

List the activity categories available to the organization (e.g. Apply, Phone Interview, Offer Received, Other).

Huntr List Advisors

List all advisors (org staff/coaches) in the organization. Useful as a credential validation call and to find advisor ids/emails for member assignment...

Huntr List Board Templates

List board templates configured in the organization. Board templates define the pipeline stages applied to new member boards.

Huntr List Candidates

List candidate (talent-portal) profiles. Each candidate belongs to a member; not every member has a candidate. Filter by email or member id, or pagina...

Huntr List Employers

List employers attached to jobs in the organization. Optionally restrict to employers marked as partners.

Huntr List Goals

List the organization's goals. By default returns only ACTIVE goals.

Huntr List Job Posts

List job posts in the organization's job board. Returns title, employer, salary, location(s), tags, visibility, and member-group scoping.

Huntr List Jobs

List jobs (application cards on member boards) in the organization. Filter by owner/creator member or creation window.

Huntr List Member Fields

List the organization's custom member fields, including field type and choices for MULTIPLE_CHOICE/MULTIPLE_SELECT fields.

Huntr List Member Groups

List member groups in the organization. Member groups can scope job-post visibility and audience for sending job posts.

Huntr List Member Notes

List internal member notes written by org staff/advisors, sorted from most recently created to oldest.

Huntr List Members

List members (job seekers) in the organization. Supports filtering by active state and cursor pagination. Returns names, emails, advisor assignment, a...

Huntr List Organization Invitations

List pending organization invitations sent to prospective members. Returns invitation records including recipient email, board template, pre-assigned ...

Huntr List Tags

List all tags created by the organization. Returns id, name, description, color, and target objects (currently always JOB_POST).

Huntr Send Job Posts To Members

Queue delivery of one or more existing job posts to a set of members. Returns 200 on successful enqueue; actual delivery is asynchronous.

Huntr Update Member Field Value

Set or update a specific member's value for one of the organization's member fields.

Frequently Asked Questions

What is the Huntr MCP server?

Huntr for Organizations is a career placement platform used by bootcamps, universities, workforce-development agencies, career coaches, and outplacement services to track members' job searches, manage candidate profiles, share job posts, run goals, and capture activities. It provides 31 tools that AI agents can use through the Model Context Protocol (MCP).

How do I connect Huntr to my AI agent?

Add the MCPBundles server URL to your MCP client configuration (Claude Desktop, Cursor, VS Code, etc.). The URL format is: https://mcp.mcpbundles.com/bundle/huntr. Authentication is handled automatically.

How many tools does Huntr provide?

Huntr provides 31 tools that can be called by AI agents, along with a SKILL.md that gives your AI agent domain knowledge about when and how to use them.

What authentication does Huntr require?

Huntr uses API Key. Huntr requires credentials. Connect via MCPBundles and authentication is handled automatically.

Setup Instructions

Connect Huntr to any MCP client in minutes

MCP URL
https://mcp.mcpbundles.com/bundle/huntr

One-click install:

The link prefills the Add custom connector dialog — you still review the values and click Add, then Connect to complete OAuth.

Or add manually

  1. Open claude.ai → Settings → Connectors.
  2. Click the + button and choose Add custom connector.
  3. Set Name to Huntr and paste the MCP URL into Remote MCP server URL.
  4. Click Add. Huntr will appear under Not connected — select it and click Connect to complete OAuth.
Name: Huntr
Remote MCP server URL: https://mcp.mcpbundles.com/bundle/huntr
Authentication: OAuth

Custom connectors at claude.ai require a paid Claude plan (Pro, Max, Team, or Enterprise).

Ready to use Huntr?

Sign in to connect your credentials and start running tools from the chat.

Huntr MCP Server & Skill — 31 Tools