Skip to main content
Glama

Get my profile

get_my_profile
Read-only

Get your candidate profile: name, contact details, headline, summary, resume, education and experience.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYes
phoneNo
resumeNo
addressNo
summaryNo
headlineNo
lastnameNo
educationNo
firstnameNo
experienceNo
coverLetterNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added
  2. Removed
  3. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "address": {
      +      "type": "string"
      +    },
      +    "coverLetter": {
      +      "type": "string"
      +    },
      +    "education": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "degree": {
      +            "description": "e.g. BSc, MSc, PhD",
      +            "type": "string"
      +          },
      +          "end_date": {
      +            "description": "ISO date; omit if ongoing",
      +            "type": "string"
      +          },
      +          "field_of_study": {
      +            "type": "string"
      +          },
      +          "school": {
      +            "description": "School or university name",
      +            "type": "string"
      +          },
      +          "start_date": {
      +            "description": "ISO date, e.g. 2019-09-01",
      +            "type": "string"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "email": {
      +      "type": "string"
      +    },
      +    "experience": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "company": {
      +            "description": "Company name",
      +            "type": "string"
      +          },
      +          "current": {
      +            "description": "Set true if this is the current role",
      +            "type": "boolean"
      +          },
      +          "end_date": {
      +            "description": "ISO date; omit if current role",
      +            "type": "string"
      +          },
      +          "industry": {
      +            "type": "string"
      +          },
      +          "start_date": {
      +            "description": "ISO date, e.g. 2020-01-01",
      +            "type": "string"
      +          },
      +          "summary": {
      +            "description": "Role description",
      +            "type": "string"
      +          },
      +          "title": {
      +            "description": "Job title",
      +            "type": "string"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "firstname": {
      +      "type": "string"
      +    },
      +    "headline": {
      +      "type": "string"
      +    },
      +    "lastname": {
      +      "type": "string"
      +    },
      +    "phone": {
      +      "type": "string"
      +    },
      +    "resume": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "name": {
      +          "type": "string"
      +        },
      +        "url": {
      +          "type": "string"
      +        }
      +      },
      +      "type": "object"
      +    },
      +    "summary": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "email"
      +  ],
      +  "type": "object"
      +}
  4. First observed

TDQS

A4.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, so the description does not need to restate safety. It adds some context by listing the profile fields returned, but it does not disclose any additional behavioral traits such as authentication requirements or response structure. The output schema covers return shape, so this is adequate but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with no filler words. It front-loads the action and resource, then enumerates the contained fields in a natural list. Every part contributes meaningful information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only, zero-parameter profile retrieval tool, the description fully covers what the agent needs: the resource and its key contents. An output schema is present, so return-value details are already structured. Annotations cover safety, and there are no complex behaviors left unexplained.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so there are no parameter semantics to explain. With no input schema properties, the description does not need to compensate for schema gaps; the baseline of 4 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') on a clear resource ('your candidate profile') and lists the main fields it returns (name, contact details, headline, summary, resume, education, experience). It is immediately distinguishable from sibling tools like get_job or get_company because it is scoped to the user's own profile.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly implies when to use this tool: whenever the agent needs the caller's own candidate profile data. It does not explicitly state when not to use it or mention alternatives like update_my_profile, but the 'my' scoping and sibling names make the intended use clear enough.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources