Skip to main content
Glama

add_profile_to_person

Destructive

Give noticed a LinkedIn or GitHub URL for a contact missing a profile (an email-only person from list_profile_gaps). Pass person_id + the url. If that profile is already in noticed it matches + merges them into one record (a contested match is held for an admin); if it's new, noticed queues it to fetch + enrich, then match. Use to ENRICH a thin contact — not to merge two existing records (that's accept_identity_match / suggest_identity_match).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesA LinkedIn (linkedin.com/in/…) OR GitHub (github.com/…) URL for that person — one or the other.
person_idYespersons.id of the contact to attach a profile to (from list_profile_gaps / search_people / get_person).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYesWhether noticed completed the operation.
dataNoThe operation result when ok is true.
errorNoA human-readable error when ok is false.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": true,
      +  "properties": {
      +    "data": {
      +      "additionalProperties": true,
      +      "description": "The operation result when ok is true.",
      +      "properties": {
      +        "merged_person_id": {
      +          "type": "string"
      +        },
      +        "message": {
      +          "type": "string"
      +        },
      +        "status": {
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "status",
      +        "merged_person_id",
      +        "message"
      +      ],
      +      "type": "object"
      +    },
      +    "error": {
      +      "description": "A human-readable error when ok is false.",
      +      "type": "string"
      +    },
      +    "ok": {
      +      "description": "Whether noticed completed the operation.",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "ok"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A4.8/5.0
Behavior5/5

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

The description details the behavior in two scenarios: existing profile (matches and merges with admin hold) and new profile (queues to fetch and enrich). This goes beyond the basic readOnly/destructive hints, providing transparency about potential actions and outcomes.

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

Conciseness4/5

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

The description is reasonably concise but includes some redundancy (e.g., repeating 'Give noticed' and 'Pass person_id + the url'). It is structured with action, parameters, behavior, and usage. Could be tightened but is not excessively verbose.

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?

The description covers the purpose, usage conditions, expected behavior in different scenarios, and explicitly distinguishes from alternatives. It is comprehensive for the tool's functionality, and the presence of an output schema means return value details are not required in the description.

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?

While the schema provides clear descriptions for both parameters, the tool description reinforces the intended context (contact missing a profile) and reiterates the requirement to provide both. It adds a slight semantic nuance but not significantly beyond the schema.

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 explicitly states the action (adding a profile via URL) and the target (contact missing a profile). It also clarifies the intended use case (enrich thin contact) and distinguishes from alternatives.

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

Usage Guidelines5/5

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

The description provides explicit guidance on when to use this tool (for enriching a thin contact) and when not to (for merging existing records, pointing to accept_identity_match / suggest_identity_match). It also references list_profile_gaps context.

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