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.
Available Tools
10 toolsinstaffo_auth_statusInstaffo Auth StatusARead-only
Report whether a usable Instaffo session is present.
| Name | Required | Description | Default |
|---|---|---|---|
| deep | No | When true, launch a browser and confirm the session against the live app (authoritative but slow). When false (default), only read the on-disk session snapshot (fast, no browser). |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description explains both operational modes (deep=true launches browser, deep=false uses snapshot), adding behavioral context beyond annotations (readOnlyHint, openWorldHint). No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One sentence efficiently conveys the tool's purpose and behavior, front-loaded and without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple status tool with an output schema, the description completely covers both parameter behaviors and the tool's overall function.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with parameter 'deep' described. The description adds meaningful context about its behavior (browser launch vs snapshot), enhancing understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool reports whether a usable Instaffo session is present, which is a distinct purpose from sibling tools (e.g., instaffo_login, instaffo_whoami).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not provide guidance on when to use this tool versus alternatives or when not to use it. For a status check tool, it is implicit but not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
instaffo_get_job_suggestionInstaffo: get one job suggestionARead-only
Full detail for one job suggestion, by its job_uuid (from the list tool).
Includes the role description, requirements, process, salary band, skills, and the screening questions that applying will require answering.
| Name | Required | Description | Default |
|---|---|---|---|
| job_uuid | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations provide readOnlyHint=true, and description adds value by listing included fields (role, requirements, salary, etc.). No contradictions; adequately discloses behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences: first states purpose, second enumerates contents. No wasted text, highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a detail retrieval tool with output schema, the description covers key content areas. No missing elements expected for this operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Only parameter job_uuid lacks schema description (0% coverage). Description adds meaningful context by noting it comes from the list tool, aiding understanding of expected value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description states 'Full detail for one job suggestion', clearly specifying verb and resource. It distinguishes from the sibling list tool by referencing 'from the list tool', making its scope unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly instructs to use the job_uuid from the list tool, providing clear prerequisite context. Does not mention alternatives but the use case is well implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
instaffo_get_profileInstaffo: get my profileARead-only
Return the candidate's Instaffo profile: seniority, location, skills, CV.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint: true and openWorldHint: true, so description need not reiterate. It adds value by listing returned fields, but does not disclose error conditions or authentication requirements beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single efficient sentence of 9 words with no superfluous information. Front-loaded with verb and resource.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Output schema exists, so description does not need to explain return values. It lists key fields (seniority, location, skills, CV) which covers the essential profile information. Could mention authentication state but not required given simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has zero parameters and schema coverage is 100%, so no parameter documentation needed. Baseline for 0 parameters is 4; description adds nothing but not required.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description states 'Return the candidate's Instaffo profile' with specific fields listed (seniority, location, skills, CV). This clearly identifies the resource and action, though it does not distinguish this from siblings like instaffo_whoami or instaffo_auth_status.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. Does not specify prerequisites, filtering, or context for invocation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
instaffo_list_conversationsInstaffo: list conversationsARead-only
List chats: company requests (inbound interest) and your job applications.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, so the description does not need to restate safety. It adds value by specifying the types of chats (inbound interest and applications), giving behavioral context beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence that immediately communicates the action and scope. It is front-loaded with 'List chats' and provides the categories concisely, with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no parameters and an output schema is provided, the description sufficiently covers the tool's purpose. It clearly states what is listed (chats) and the included categories, requiring no additional context for a simple listing tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has no parameters and is fully documented. With 0 parameters, the baseline score is 4, and the description does not need to add parameter-level details. No additional semantics are required.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'list' and resource 'chats', and clearly distinguishes two types: company requests and job applications. This sets it apart from sibling tools like auth or job saving, which have different verbs and resources.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention prerequisites, recommended contexts, or situations where other tools should be preferred, leaving the agent without decision-making support.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
instaffo_list_job_suggestionsInstaffo: list job suggestionsARead-only
List the candidate's current job suggestions (the matches shown in-app).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and openWorldHint. The description adds that it shows 'the matches shown in-app', providing context. However, no additional behavioral details like pagination or filtering are given, which is acceptable for a read-only list with no parameters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is front-loaded and efficient. Every word adds value, with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given zero parameters and an existing output schema (not shown but present), the description is complete for a simple list tool. It explains what the tool does (list suggestions) and implicitly its context (in-app matches). Missing details about return structure are covered by the output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters and 100% description coverage, so the description need not add parameter details. Baseline 4 applies as no additional semantics are required.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists the candidate's current job suggestions, matching the app's display. It distinguishes itself from the sibling 'instaffo_get_job_suggestion' which retrieves a single suggestion, thus avoiding confusion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for retrieving the current set of job suggestions. While it provides clear context, it does not explicitly state when not to use it or mention alternatives, though for a simple list tool this is adequate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
instaffo_loginInstaffo Login InstructionsCRead-only
Explain how to establish a session (interactive, runs in a terminal).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Description claims interactive terminal session establishment, implying state change, but annotations set readOnlyHint=true. This is a direct contradiction between description and annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, concise. However, key information about the tool's actual effect is missing.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the contradiction and lack of clarity on whether it performs login or explains it, the description is incomplete. Output schema exists but is not leveraged.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, and schema coverage is 100%. The description adds context that it is interactive and terminal-based, which is helpful but not critical.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it explains how to establish a session, tying directly to login. However, it is ambiguous whether it performs the login or merely provides instructions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus siblings like instaffo_auth_status. The description does not mention prerequisites or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
instaffo_save_jobInstaffo: save a jobA
Bookmark (favorite) a job suggestion. Reversible with instaffo_unsave_job.
| Name | Required | Description | Default |
|---|---|---|---|
| confirm | No | must be true to perform the write; false returns a preview. | |
| job_uuid | Yes | the job's uuid (from instaffo_list_job_suggestions). |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that the operation is reversible and hints at a preview mechanism via the confirm parameter. It does not contradict the annotation (openWorldHint). No mention of authentication requirements or error states, but the core behavior is transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the main action, no unnecessary words. Highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple bookmarking tool, the description covers the main behavior, reversibility, and preview. It does not mention error cases or output schema details (though output schema exists), but is adequate given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds value by noting the source of job_uuid (from instaffo_list_job_suggestions) and confirming the preview behavior of confirm, improving semantic clarity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb (bookmark/favorite) and resource (job suggestion), and distinguishes it from sibling instaffo_unsave_job by mentioning reversibility.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly mentions the reverse operation, guiding when to use this vs instaffo_unsave_job. It does not mention prerequisites (e.g., login status) or alternatives beyond the reversal, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
instaffo_set_skill_experienceInstaffo: set skill experienceA
Set your years-of-experience for one or more skills on your profile.
This writes to your real profile. Durations are 0-5 (5 means 5+). Only submit truthful values. Without confirm=true it returns a preview.
| Name | Required | Description | Default |
|---|---|---|---|
| skills | Yes | List of {"uuid": <skill uuid>, "duration": <years 0-5>}. Skill uuids come from a job's screening/prequalification data. | |
| confirm | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description explicitly states the write behavior ('This writes to your real profile') and the preview mode, adding significant behavioral context beyond the openWorldHint annotation. There is no contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three focused sentences with no waste. It front-loads the purpose, then adds key specifics. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the core functionality and preview behavior. It does not explain the preview response format, but an output schema exists. The mention of skill UUID source is in the schema but not description, which is a minor gap. Overall complete for the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds critical meaning: 'Durations are 0-5 (5 means 5+).' and explains the confirm parameter's effect. With only 50% schema description coverage, the description compensates effectively by clarifying value ranges and behavior.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Set your years-of-experience for one or more skills on your profile.' It uses a specific verb ('Set') and identifies the resource ('skills on your profile'). No sibling tool performs this action, so it distinguishes well.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides guidance on when to use the confirm parameter ('Without confirm=true it returns a preview') and advises to submit truthful values. It doesn't explicitly mention alternatives because no alternatives exist among siblings. Context is clear, but could add prerequisites (e.g., skill UUIDs from job screening data).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
instaffo_unsave_jobInstaffo: unsave a jobA
Remove a job from your bookmarks. Reverses instaffo_save_job.
| Name | Required | Description | Default |
|---|---|---|---|
| confirm | No | must be true to perform the write; false returns a preview. | |
| job_uuid | Yes | the job's uuid. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Description states a clear write operation ('Remove'), but beyond the 'confirm' parameter behavior hinted in schema, no additional side effects or constraints beyond annotations (openWorldHint) are disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise, front-loaded sentences with zero unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple mutation tool with output schema, the description sufficiently covers purpose, relation to save, and the need for confirmation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. Description adds no extra parameter meaning beyond what schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states verb 'Remove', resource 'job from bookmarks', and explicitly references its inverse sibling 'instaffo_save_job', making its distinct purpose obvious.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implicitly tells when to use (to reverse a save) via 'Reverses instaffo_save_job', but lacks explicit when-not-to-use or alternative conditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
instaffo_whoamiInstaffo: who am IARead-only
Return the signed-in candidate's basic identity.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true. The description adds that it returns 'basic identity', implying a limited dataset, but does not disclose other behavioral traits like authentication requirements or potential latency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no unnecessary words, front-loaded with the verb and resource. Every part earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no params, output schema exists), the description is mostly adequate. It mentions 'signed-in candidate', implying authentication context, but could hint at the specific data fields returned, though output schema covers that.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters, and schema coverage is 100%. The description does not need to explain parameters. Baseline for zero parameters is 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Return the signed-in candidate's basic identity' uses a specific verb ('Return') and resource ('signed-in candidate's basic identity'), clearly distinguishing from siblings like instaffo_get_profile (full profile) and instaffo_auth_status (auth status).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives such as instaffo_get_profile or instaffo_auth_status. The description only states functionality without contextual usage advice.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
10 tool updates
v0.1.0- First observed
instaffo_auth_status - First observed
instaffo_get_job_suggestion - First observed
instaffo_get_profile - First observed
instaffo_list_conversations - First observed
instaffo_list_job_suggestions - First observed
instaffo_login - First observed
instaffo_save_job - First observed
instaffo_set_skill_experience - First observed
instaffo_unsave_job - First observed
instaffo_whoami
TDQS
Each tool has a clearly distinct purpose, with no overlap between listing, getting details, saving/unsaving jobs, managing profile skills, or authentication.
All tools follow a consistent 'instaffo_verb_noun' pattern, making the action and target clear for each tool.
10 tools cover the core functionalities of a job-seeking assistant (auth, profile, job suggestions, conversations) without being excessive or insufficient.
The set covers most key operations but lacks a tool for applying to jobs, which is a significant gap for automated job search workflows.
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 Connectors
Manage job applications — jobs, companies, boards, notes, and profile — from your AI client.
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.
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,352Apache 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
- AlicenseAqualityBmaintenanceEnables AI assistants to search and apply for jobs on Handshake, track applications, and research employers using your browser session.121MIT
- AlicenseAqualityDmaintenanceConnects your LinkedIn professional profile to AI assistants (Claude, GitHub Copilot) via LinkedIn's official Member Data Portability API, enabling read-only access to résumé data, activity, and recent changes.5443MIT
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