instaffo-mcp-server
The instaffo-mcp-server lets an AI assistant access and manage an Instaffo candidate account through a browser session. It can:
Read account information: personal identity, profile details, job suggestions, and conversation history.
Manage job bookmarks: save and unsave job suggestions.
Manage profile details: update 'About me', skills, languages, industries, social links, seniority, and salary expectations (reversible write actions requiring
confirm: true).Manage CV: add, update, and delete work or education entries.
Set skill experience: specify years of experience for skills.
Check authentication status, with optional deep/live validation.
Provide login guidance for establishing a session interactively.
Configure job matching: set target job roles and job-seeking status.
Search skills: look up skill UUIDs in Instaffo's vocabulary.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@instaffo-mcp-servershow my job suggestions"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
instaffo-mcp-server
An MCP server that gives an AI assistant access to your own Instaffo candidate account, authenticated with your own browser session. Personal job-search tooling. Runs fully local.
Instaffo is a two-sided recruiting marketplace (candidates are matched with companies). This server exposes the candidate side: read your profile and job suggestions, read conversations, and perform reversible write actions, from an MCP client.
How it works
Instaffo has no public candidate API, so the server authenticates with a real
logged-in session. Its candidate web app talks to a clean JSON API under
app.instaffo.com/candidate/api/v1/*, authenticated purely by the session
cookie (no bearer token). So the server is a thin cookie-authenticated httpx
client, not a scraper. A browser (via patchright) is used only once, to mint
the session at login.
MCP client ── stdio ──> instaffo-mcp-server ──cookie──> app.instaffo.com JSON API
│
storage-state.json (cookies, written 0600, git-ignored)
▲
instaffo-mcp --login (one-time browser sign-in)Related MCP server: Chrome MCP Server
Setup
uv sync
uv run patchright install chromium # one-time, for login only
uv run instaffo-mcp --login # opens a browser; sign in once
uv run instaffo-mcp --auth-status # confirm the session is storedRegister it with your MCP client (stdio):
{
"command": "uv",
"args": ["run", "--directory", "/path/to/instaffo-mcp-server", "instaffo-mcp"]
}Tools
Reads (no side effects):
Tool | What it returns |
| your identity (name, email, job title) |
| your profile: seniority, location, skills, CV summary |
| your current matches, with counters |
| one role in full: description, requirements, salary, screening questions |
| company requests (inbound interest) and your applications |
| is a session present ( |
| look up skill uuids in Instaffo's closed vocabulary |
Writes (every write tool takes confirm; without it no network call is made
and you get back the exact payload that would be sent):
Tool | Effect | Endpoint |
| bookmark a suggestion |
|
| replace the About me text |
|
| replace the skill set |
|
| replace the language list |
|
| replace industry experience |
|
| replace social links |
|
| set working experience level |
|
| annual salary expectation |
|
| target roles (drives matching) |
|
| active / passive |
|
| add a work or education entry |
|
| edit an entry in place |
|
| remove an entry (irreversible) |
|
| years per skill |
|
All endpoints are observed, never guessed. The contract they were built from is
docs/API.md, dated and derived from a recorded capture.
Why every write reads back
This API returns a bare {"success": true} for every write, and validates
only partially — a PATCH with required fields omitted, or with wrong-typed
values, also returns {"success": true}. The response therefore cannot tell you
what was stored. Each write tool re-reads GET /profile and reports verified
plus value_now; trust those, not the response.
Two field traps worth knowing before you call anything:
instaffo_set_skillsre-derivestopSkillsserver-side. There is notopSkillsfield to send and no UI control for it. A save with the skill set unchanged still moved the top three.Skills cap at 23 (
skills20 +topSkills3). Exceeding it returns"maximum is 20 characters"— the message says characters, the unit is items.
Supervised, on purpose: apply and message
Two actions are intentionally not implemented as fire-and-forget tools: applying to a job, and messaging a recruiter.
Applying is not one request. It is a multi-step wizard that writes lasting self-representations to your real profile before it submits:
a skill self-assessment (year sliders per required skill, e.g. 0-5), which auto-saves to your profile via
experience_durations/bulk_save,your salary expectation (pre-filled from your profile),
an "AI tools you use" and "AI skills" multi-select,
a final submit that creates the application and opens a chat with the recruiter.
Because those are real, outward-facing choices about how you present yourself, and the final submit endpoint only appears once the whole flow is completed, the apply and message tools are left for a supervised session where the account owner approves the inputs. They are not built against a guessed endpoint. The observed sub-steps and wizard shape are recorded here so that session is quick.
Commands
instaffo-mcp # run the MCP server (stdio)
instaffo-mcp --login # headed manual login, persist the session
instaffo-mcp --capture # record app API traffic to a JSONL (diagnostics)
instaffo-mcp --auth-status [--deep]Security and privacy
Session material (
profile/,storage-state.json,captures/,.env) lives under~/.instaffo-mcp, is written0600, and is git-ignored. It is never committed.Write tools are confirm-gated and only touch reversible surfaces.
This is a personal, local tool for your own account. It stores no one else's data and talks only to Instaffo with your own session.
Prior art
The session-capture and browser patterns are adapted in spirit from stickerdaniel/linkedin-mcp-server (Apache-2.0), which authenticates a personal LinkedIn session the same way.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceEnables AI assistants to interact with LinkedIn by scraping profiles, companies, job postings, and getting personalized job recommendations using authenticated browser automation.173,203Apache 2.0
- AlicenseNot gradedqualityBmaintenanceEnables AI assistants to control and automate your Chrome browser directly, leveraging existing login states and configurations for tasks like content analysis, semantic search across tabs, screenshots, network monitoring, and interactive operations.10MIT
- AlicenseNot gradedqualityCmaintenanceLets AI assistants control your real Chrome browser to perform web tasks like reading pages, taking screenshots, clicking, and typing, using your existing logged-in sessions.131MIT

blackmount-mcpofficial
AlicenseNot gradedqualityAmaintenanceEnables AI assistants to access and search local browser history, bookmarks, open tabs, and downloads for personalized context.MIT
Related MCP Connectors
Give AI agents the LinkedIn tools to find, qualify, engage, and follow up with prospects.
Run LinkedIn outreach from your AI chat: find leads, launch campaigns, send, and reply.
Let ChatGPT, Claude & Cursor use your Mac: email, calendar, iMessage, Teams, files. Local, free.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/esinecan/instaffo-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server