person.work — Agent-maintained CV
Server Details
Maintain your CV with your agent. Review changes, then share one record as web, PDF and open data.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Scored across 4 tools
Each tool targets a distinct operation: reading your own private record, reading another user's public profile, proposing incremental changes for review, and performing an initial sync/import. The descriptions clearly differentiate the private vs public and propose vs sync workflows, so an agent is unlikely to confuse them.
The naming follows a mostly consistent verb-object pattern with 'my_' prefixes for owner-scoped operations (get_my_career_record, propose_my_career_change, sync_my_profile), while get_profile correctly omits 'my_' for public records. Minor inconsistency: get_my_career_record vs get_profile could be more parallel, but it remains clear.
Four tools is well-suited for the CV-management domain: read own, read public, propose updates, and initial import/sync. There is no redundancy or unnecessary surface area.
The surface covers the core lifecycle: reading both private and public records, proposing ongoing changes, and creating/replacing via sync. It lacks an explicit tool for directly managing or reviewing pending proposals, though that may intentionally be an owner-side workflow outside the agent surface.
Available Tools
4 toolsget_my_career_recordGet the authenticated owner's Career RecordARead-onlyInspect
Returns the OAuth-authenticated owner's canonical record. Read this before proposing an ongoing CV update so stable experience identifiers and confirmed facts are preserved.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=false, so the read-only nature is covered. The description adds some context about the data being 'canonical' and containing 'stable experience identifiers and confirmed facts,' which is helpful but not extensive. It does not discuss response format, pagination, or other behaviors, so the added value is modest.
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 two concise sentences, with the primary function front-loaded and the usage guidance following. Every sentence adds value without redundancy or filler.
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?
With no output schema, the description should convey what the return value represents. It does so by stating it returns the 'canonical record' and hints at its content ('stable experience identifiers and confirmed facts'). While it doesn't enumerate fields, this is likely sufficient for a no-parameter read operation, and the agent can infer the structure from the description.
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 tool has zero parameters, so the baseline is 4. The description does not need to explain parameters, and since there are none, it correctly adds nothing. The schema coverage is vacuously 100%, and the description does not introduce any confusion.
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 a verb ('Returns') and a specific resource ('the OAuth-authenticated owner's canonical record'). It also gives a hint of its purpose ('preserving stable experience identifiers and confirmed facts'), which distinguishes it from siblings like get_profile or propose_my_career_change, though it does not explicitly name them.
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 a clear usage context: 'Read this before proposing an ongoing CV update.' This tells the agent when to call it, but it does not mention when not to use it or point to alternatives, so it lacks explicit exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_profileGet an opt-in public Career RecordCRead-onlyInspect
Returns one public Career Record whose owner explicitly enabled MCP visibility. Contact values are excluded.
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | full | |
| username | Yes | The person.work profile slug | |
| include_extensions | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the description adds value by noting contact values are excluded and that the record is public and opt-in. However, it does not disclose other behavioral aspects like pagination, error conditions for missing or non-public records, or the structure of the returned object.
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 very concise, two sentences with no filler. It front-loads the key constraint (public, opt-in) and the contact exclusion. However, it omits critical parameter details and usage context, making it efficient but incomplete.
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 tool with three parameters and no output schema, the description is insufficiently complete. It does not explain what 'full' vs 'summary' formats mean, what include_extensions does, or what a Career Record contains. It also fails to differentiate from siblings, leaving an agent without enough information to call it correctly.
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 description coverage is only 33% (only username is documented). The description does not mention the format or include_extensions parameters, and it does not explain their meaning or default behavior. It adds no parameter-level context beyond the schema, which is inadequate given the low coverage.
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 returns a public Career Record and specifies the opt-in condition and contact exclusion. However, it does not differentiate from sibling get_my_career_record, which likely serves the same resource type but for the caller's own record.
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. It does not mention that get_my_career_record should be used for the caller's own record, nor does it describe any prerequisites like whether the target user must have enabled MCP visibility (it does imply that, but not as a usage guideline).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
propose_my_career_changePropose an ongoing CV change for owner reviewAInspect
Adds a structured, human-readable diff to the owner's review inbox. Experience upserts may include a public HTTPS company_logo_url; person.work imports its own protected copy only after owner approval. Use this for normal maintenance after the initial import; the agent cannot apply or publish it.
| Name | Required | Description | Default |
|---|---|---|---|
| instruction | Yes | ||
| diff_summary | No | ||
| source_label | No | ||
| proposed_patch | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses important side effects: it creates a review item, imports protected copies only after owner approval, and cannot directly apply or publish. It does not describe every possible effect, but the key behavioral boundaries are clear.
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 brief and front-loaded with the main purpose. Every sentence adds meaningful information, with no redundant or filler content.
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 complex nested schema and no output schema, the description provides good high-level context but not enough to construct a valid patch or instruction without closely inspecting the schema. Sibling tool names help, but the description does not explain how this tool fits with them in detail.
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 hints at 'structured diff' and logo handling but leaves the instruction and proposed_patch parameters largely to the schema. Some nested fields have descriptions, but the overall parameter semantics are not fully explained in the tool description.
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 the tool adds a structured, human-readable diff to the owner's review inbox, and explicitly contrasts with applying or publishing changes. This makes the core purpose and non-purpose 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?
Provides explicit usage context: use for normal maintenance after the initial import, not for applying or publishing. However, it does not name sibling tools to directly guide selection among get_my_career_record, get_profile, or sync_my_profile.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sync_my_profileImport a complete existing CV for the authenticated ownerADestructiveIdempotentInspect
Explicit initial-import operation for structured facts already interpreted by the calling agent. It does not accept or store a raw CV, PDF, or source text, and person.work does not run a second AI interpretation. The operation deterministically validates the payload and atomically creates a private profile when needed or replaces the owner's profile facts and complete experience list. Experiences may include a public HTTPS company_logo_url; person.work imports a protected copy. Use null to remove a logo and omit the field to preserve it. Identity is required only for first creation. Never use this for routine updates.
| Name | Required | Description | Default |
|---|---|---|---|
| profile | Yes | ||
| identity | No | Required only when this initial sync creates the authenticated owner's private person.work profile. | |
| extension | No | Typed profession fields (e.g. primaryLanguages, seniority). Replaces the stored fields of that extension; omit to leave them untouched. | |
| experiences | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds meaningful behavioral context beyond the annotations: it states the operation is 'deterministically validates the payload and atomically creates a private profile when needed or replaces the owner's profile facts and complete experience list,' which aligns with the destructive and idempotent hints. It also discloses that 'person.work does not run a second AI interpretation' and that logos are 'imported a protected copy.' These details go beyond what annotations alone convey.
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 paragraph of about six sentences, each contributing a distinct point: the operation type, exclusions, validation behavior, logo handling, identity requirement, and usage caution. It front-loads the primary purpose and uses clear, direct language. There is minimal redundancy, though it could be tightened slightly without losing information.
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 complex operation with nested objects, no output schema, and annotations that are not self-explanatory, the description covers the essential aspects: what it does, what it rejects, creation vs. replacement, logo handling, identity conditions, and a strong usage warning. It does not describe the response format or error scenarios, but given the operation's nature and the absence of an output schema, the provided context is sufficient for an agent to invoke it correctly.
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 schema has 50% description coverage, and the description adds value for some key parameters: it explains the null-vs-omit semantics for company_logo_url and avatar_url, and clarifies that identity is only for first creation. However, it does not elaborate on many other fields (e.g., competencies, extension fields), which are left to the schema. Since coverage is moderate, the description partially compensates but not exhaustively.
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 opens with 'Explicit initial-import operation for structured facts already interpreted by the calling agent,' which precisely states the verb (import), the resource (structured CV facts), and the scope (initial import only). It also explicitly negates what it does not do ('does not accept or store a raw CV, PDF, or source text'), and the title reinforces the action. This clearly distinguishes it from sibling get and propose tools.
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 gives explicit usage guidance: 'Never use this for routine updates' tells the agent when not to use it, and 'Identity is required only for first creation' sets a condition. It implies this is for initial import rather than updates, which differentiates it from propose_my_career_change, though it does not name the alternative explicitly. The 'initial-import operation' label provides clear context.
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.
4 tool updates
- First observed
get_my_career_record - First observed
get_profile - First observed
propose_my_career_change - First observed
sync_my_profile
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Talent discovery for AI. Search and read agent-readable candidate profiles; cite by URL.
Honest resume/cover tailor for agents. Free generate; Stripe unlock for downloads. Streamable HTTP.
Publish agent output to permanent versioned URLs, read review comments back, and revise.
Score and tailor your CV/resume against a job posting — for AI agents and humans, no-login trial.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to create, retrieve, update, delete, and export CVs as PDFs through MCP, sharing documents with the web editor.MIT
- AlicenseNot gradedqualityCmaintenanceResume-as-an-Agent (RAAA) or Portfolio-as-an-Agent (PAAA) allows Agents to talk to your resume, find out if you are available for work, and more. Use the MCP to allow recruiters, managers, and anyone with an agent to "talk" to your resume.3MIT
- FlicenseAqualityCmaintenanceEnables MCP-compatible agents to answer questions about you by exposing your CV through a tool, resource, and prompt.1-
- AlicenseNot gradedqualityCmaintenanceEnables drafting, validating, and reviewing tailored CVs and cover letters from private local career inputs, with reproducible PDF builds and application tracking support.MIT