Skip to main content
Glama

Lovie Company Formation

List Company Members

company_get_list_company_members
Read-only

GetListCompanyMembers lists all members of a company

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
companyIdYesUUID value wrapper.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
membersNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed17 schema fields changed
    • addedOutput schema / properties / members / items / properties / companyId / anyOf
      Added value: +[
      +  {
      +    "description": "UUID value wrapper.",
      +    "properties": {
      +      "value": {
      +        "format": "uuid",
      +        "type": "string"
      +      }
      +    },
      +    "type": "object"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / properties / members / items / properties / companyId / description
      Removed value: -"UUID value wrapper."
    • removedOutput schema / properties / members / items / properties / companyId / properties
      Removed value: -{
      -  "value": {
      -    "format": "uuid",
      -    "type": "string"
      -  }
      -}
    • removedOutput schema / properties / members / items / properties / companyId / type
      Removed value: -"object"
    • addedOutput schema / properties / members / items / properties / id / anyOf
      Added value: +[
      +  {
      +    "description": "UUID value wrapper.",
      +    "properties": {
      +      "value": {
      +        "format": "uuid",
      +        "type": "string"
      +      }
      +    },
      +    "type": "object"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / properties / members / items / properties / id / description
      Removed value: -"UUID value wrapper."
    • removedOutput schema / properties / members / items / properties / id / properties
      Removed value: -{
      -  "value": {
      -    "format": "uuid",
      -    "type": "string"
      -  }
      -}
    • removedOutput schema / properties / members / items / properties / id / type
      Removed value: -"object"
    • addedOutput schema / properties / members / items / properties / joinedAt / anyOf
      Added value: +[
      +  {
      +    "format": "date-time",
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / properties / members / items / properties / joinedAt / format
      Removed value: -"date-time"
    • removedOutput schema / properties / members / items / properties / joinedAt / type
      Removed value: -"string"
    • changedOutput schema / properties / members / items / properties / role / enum
      Previous value: -[
      -  "COMPANY_MEMBER_ROLE_UNSPECIFIED",
      -  "COMPANY_MEMBER_ROLE_OWNER",
      -  "COMPANY_MEMBER_ROLE_ADMIN",
      -  "COMPANY_MEMBER_ROLE_MEMBER"
      -]New value: +[
      +  "COMPANY_MEMBER_ROLE_UNSPECIFIED",
      +  "COMPANY_MEMBER_ROLE_OWNER",
      +  "COMPANY_MEMBER_ROLE_ADMIN",
      +  "COMPANY_MEMBER_ROLE_MEMBER",
      +  "COMPANY_MEMBER_ROLE_OPERATOR"
      +]
    • removedOutput schema / properties / members / items / properties / scopes
      Removed value: -{
      -  "items": {
      -    "properties": {
      -      "accessLevel": {
      -        "enum": [
      -          "PRODUCT_ACCESS_LEVEL_UNSPECIFIED",
      -          "PRODUCT_ACCESS_LEVEL_VIEWER",
      -          "PRODUCT_ACCESS_LEVEL_CONTRIBUTOR",
      -          "PRODUCT_ACCESS_LEVEL_MANAGER"
      -        ],
      -        "type": "string"
      -      },
      -      "productCode": {
      -        "type": "string"
      -      }
      -    },
      -    "type": "object"
      -  },
      -  "type": "array"
      -}
    • addedOutput schema / properties / members / items / properties / userId / anyOf
      Added value: +[
      +  {
      +    "description": "UUID value wrapper.",
      +    "properties": {
      +      "value": {
      +        "format": "uuid",
      +        "type": "string"
      +      }
      +    },
      +    "type": "object"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / properties / members / items / properties / userId / description
      Removed value: -"UUID value wrapper."
    • removedOutput schema / properties / members / items / properties / userId / properties
      Removed value: -{
      -  "value": {
      -    "format": "uuid",
      -    "type": "string"
      -  }
      -}
    • removedOutput schema / properties / members / items / properties / userId / type
      Removed value: -"object"
  2. First observed

TDQS

A3.5/5.0
Behavior3/5

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

The annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds the 'all members of a company' scope, but does not disclose pagination, potential rate limits, auth expectations, or any behavior beyond the listing itself; the annotation coverage makes this acceptable but not strong.

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 a single sentence with no fluff and its core purpose appears immediately. It does partially restate the tool name by beginning with 'GetListCompanyMembers', which is redundant, but the substantive phrase 'lists all members of a company' earns its place.

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

Completeness4/5

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

For a simple read-only listing tool with one required parameter, a well-covered schema, an output schema, and safe annotations, this is reasonably complete. It would benefit from noting behavioral details like member types or pagination, but the available structured context covers enough 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.

Parameters3/5

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

The input schema already has complete description coverage for the single required companyId parameter, so the schema handles parameter meaning. The description adds no parameter-specific detail beyond implying that the companyId identifies the company whose members should be listed.

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

Purpose4/5

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

The description clearly states that the tool lists all members of a company, using a specific verb and a clear resource. It distinguishes the tool from close siblings like company_get_company and company_get_list_companies by centering on 'members', though it does not explicitly name or contrast any sibling.

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?

Usage context is only implied: an agent can infer this tool should be used when it needs the full membership list for a company, but there is no explicit when-to-use or when-not-to-use guidance. There is no mention of alternatives or exclusions, so the agent must rely on the tool name and purpose alone.

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.