Skip to main content
Glama
Linked-API
by Linked-API

nv_fetch_company

Open a company page in Sales Navigator to retrieve basic info, and optionally fetch employees or decision makers with filters for positions, locations, industries, and more.

Instructions

Allows you to open a company page in Sales Navigator to retrieve its basic information (nv.openCompanyPage action). Can optionally retrieve employees and decision makers.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
companyHashedUrlYesHashed LinkedIn URL of the company.
retrieveEmployeesNoOptional. Whether to retrieve the company's employees information. Default is false.
retrieveDMsNoOptional. Whether to retrieve the company's decision makers information. Default is false.
employeesRetrievalConfigNoOptional. Configuration for retrieving employees. Available only if retrieveEmployees is true.
dmsRetrievalConfigNoOptional. Configuration for retrieving decision makers. Available only if retrieveDMs is true.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed4 schema fields changedv0.3.4
    • removedInput schema / properties / dmRetrievalConfig
      Removed value: -{
      -  "description": "Optional. Configuration for retrieving decision makers. Available only if retrieveDMs is true.",
      -  "properties": {
      -    "limit": {
      -      "description": "Optional. Number of decision makers to retrieve. Defaults to 20, with a maximum value of 20. If a company has fewer decision makers than specified, only the available ones will be returned.",
      -      "type": "number"
      -    }
      -  },
      -  "type": "object"
      -}
    • addedInput schema / properties / dmsRetrievalConfig
      Added value: +{
      +  "description": "Optional. Configuration for retrieving decision makers. Available only if retrieveDMs is true.",
      +  "properties": {
      +    "limit": {
      +      "description": "Optional. Number of decision makers to retrieve. Defaults to 20, with a maximum value of 20. If a company has fewer decision makers than specified, only the available ones will be returned.",
      +      "type": "number"
      +    }
      +  },
      +  "type": "object"
      +}
    • removedInput schema / properties / employeeRetrievalConfig
      Removed value: -{
      -  "description": "Optional. Configuration for retrieving employees. Available only if retrieveEmployees is true.",
      -  "properties": {
      -    "filter": {
      -      "description": "Optional. Object that specifies filtering criteria for employees. When multiple filter fields are specified, they are combined using AND logic.",
      -      "properties": {
      -        "firstName": {
      -          "description": "Optional. First name of employee.",
      -          "type": "string"
      -        },
      -        "industries": {
      -          "description": "Optional. Array of enums representing industries. Matches if employee works in any of the listed industries. Takes specific values available in the LinkedIn interface.",
      -          "items": {
      -            "type": "string"
      -          },
      -          "type": "array"
      -        },
      -        "lastName": {
      -          "description": "Optional. Last name of employee.",
      -          "type": "string"
      -        },
      -        "locations": {
      -          "description": "Optional. Array of free-form strings representing locations. Matches if employee is located in any of the listed locations.",
      -          "items": {
      -            "type": "string"
      -          },
      -          "type": "array"
      -        },
      -        "positions": {
      -          "description": "Optional. Array of job position names. Matches if employee's current position is any of the listed options.",
      -          "items": {
      -            "type": "string"
      -          },
      -          "type": "array"
      -        },
      -        "schools": {
      -          "description": "Optional. Array of institution names. Matches if employee currently attends or previously attended any of the listed institutions.",
      -          "items": {
      -            "type": "string"
      -          },
      -          "type": "array"
      -        },
      -        "yearsOfExperiences": {
      -          "description": "Optional. Array of enums representing professional experience. Matches if employee's experience falls within any of the listed ranges.",
      -          "items": {
      -            "enum": [
      -              "lessThanOne",
      -              "oneToTwo",
      -              "threeToFive",
      -              "sixToTen",
      -              "moreThanTen"
      -            ],
      -            "type": "string"
      -          },
      -          "type": "array"
      -        }
      -      },
      -      "type": "object"
      -    },
      -    "limit": {
      -      "description": "Optional. Maximum number of employees to retrieve. Defaults to 500, with a maximum value of 500.",
      -      "type": "number"
      -    }
      -  },
      -  "type": "object"
      -}
    • addedInput schema / properties / employeesRetrievalConfig
      Added value: +{
      +  "description": "Optional. Configuration for retrieving employees. Available only if retrieveEmployees is true.",
      +  "properties": {
      +    "filter": {
      +      "description": "Optional. Object that specifies filtering criteria for employees. When multiple filter fields are specified, they are combined using AND logic.",
      +      "properties": {
      +        "firstName": {
      +          "description": "Optional. First name of employee.",
      +          "type": "string"
      +        },
      +        "industries": {
      +          "description": "Optional. Array of enums representing industries. Matches if employee works in any of the listed industries. Takes specific values available in the LinkedIn interface.",
      +          "items": {
      +            "type": "string"
      +          },
      +          "type": "array"
      +        },
      +        "lastName": {
      +          "description": "Optional. Last name of employee.",
      +          "type": "string"
      +        },
      +        "locations": {
      +          "description": "Optional. Array of free-form strings representing locations. Matches if employee is located in any of the listed locations.",
      +          "items": {
      +            "type": "string"
      +          },
      +          "type": "array"
      +        },
      +        "positions": {
      +          "description": "Optional. Array of job position names. Matches if employee's current position is any of the listed options.",
      +          "items": {
      +            "type": "string"
      +          },
      +          "type": "array"
      +        },
      +        "schools": {
      +          "description": "Optional. Array of institution names. Matches if employee currently attends or previously attended any of the listed institutions.",
      +          "items": {
      +            "type": "string"
      +          },
      +          "type": "array"
      +        },
      +        "yearsOfExperiences": {
      +          "description": "Optional. Array of enums representing professional experience. Matches if employee's experience falls within any of the listed ranges.",
      +          "items": {
      +            "enum": [
      +              "lessThanOne",
      +              "oneToTwo",
      +              "threeToFive",
      +              "sixToTen",
      +              "moreThanTen"
      +            ],
      +            "type": "string"
      +          },
      +          "type": "array"
      +        }
      +      },
      +      "type": "object"
      +    },
      +    "limit": {
      +      "description": "Optional. Maximum number of employees to retrieve. Defaults to 500, with a maximum value of 500.",
      +      "type": "number"
      +    }
      +  },
      +  "type": "object"
      +}
  2. Changed6 schema fields changedv1.0.0
    • addedInput schema / properties / employeeRetrievalConfig / properties / filter / properties / industries / items
      Added value: +{
      +  "type": "string"
      +}
    • addedInput schema / properties / employeeRetrievalConfig / properties / filter / properties / locations / items
      Added value: +{
      +  "type": "string"
      +}
    • addedInput schema / properties / employeeRetrievalConfig / properties / filter / properties / positions / items
      Added value: +{
      +  "type": "string"
      +}
    • addedInput schema / properties / employeeRetrievalConfig / properties / filter / properties / schools / items
      Added value: +{
      +  "type": "string"
      +}
    • removedInput schema / properties / employeeRetrievalConfig / properties / filter / properties / yearsOfExperiences / enum
      Removed value: -[
      -  "lessThanOne",
      -  "oneToTwo",
      -  "threeToFive",
      -  "sixToTen",
      -  "moreThanTen"
      -]
    • addedInput schema / properties / employeeRetrievalConfig / properties / filter / properties / yearsOfExperiences / items
      Added value: +{
      +  "enum": [
      +    "lessThanOne",
      +    "oneToTwo",
      +    "threeToFive",
      +    "sixToTen",
      +    "moreThanTen"
      +  ],
      +  "type": "string"
      +}
  3. First observed

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries full burden. It discloses the action (nv.openCompanyPage) and optional retrievals, but lacks details on side effects, rate limits, or authentication requirements.

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 two sentences with no fluff, front-loaded with the core purpose. Every word earns its place.

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

Completeness2/5

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

Given nested parameters and no output schema, the description is too sparse. It does not explain what 'basic information' includes or the return format, leaving agents underinformed.

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

Parameters3/5

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

Schema description coverage is 100%, so baseline is 3. The description adds no extra meaning beyond the schema, merely summarizing the optional nature of employees and DMs.

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 clearly states the tool opens a Sales Navigator company page and retrieves basic information, with optional employee and decision maker retrieval. It distinguishes from siblings like fetch_company and nv_fetch_person.

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

Usage Guidelines3/5

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

The description implies usage for Sales Navigator scenarios but does not explicitly guide when to use this tool over alternatives like fetch_company or nv_search_companies, nor does it state when not to use it.

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

Latest Blog Posts

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/Linked-API/linkedapi-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server