Skip to main content
Glama
beel-es

BeeL MCP server

Official
by beel-es

beel_get_member

Read-onlyIdempotent

Retrieve one member's details for an account by providing the account ID and the member's unique UUID.

Instructions

Returns one member of the account, with the same shape the list returns.

Endpoint: GET /v1/accounts/{account_id}/members/{member_id}

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
member_idYesMembership unique UUID.
account_idYesYour own account, or an account you provisioned. It — not the credential — decides which account the operation acts on; a `403` is returned when you do not reach it, the same response an account that does not exist gets.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.5.0
    • addedInput schema / additionalProperties
      Added value: +false
  2. First observedv0.3.1

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds useful behavior beyond annotations by specifying the GET endpoint and disclosing that the returned shape matches the list response, which is important since no output schema is provided.

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?

Two concise sentences front-load the core semantics ('Returns one member...') and then provide the endpoint. No filler or redundant restatement of the tool name.

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, two-parameter GET, the description covers what it returns and how to address it. The 'same shape as list' reference is slightly indirect because the exact member fields are not spelled out, but the endpoint, parameters, and safety profile are otherwise covered by schema and annotations.

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%, with both account_id and member_id already documented in detail, including account_id authorization semantics. The description adds no parameter-specific information beyond the endpoint path, so the baseline 3 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?

States a specific verb and resource: returns one member of the account, and clearly distinguishes itself from the list operation by emphasizing 'one member' while referencing the same shape as the list. The endpoint path makes the resource and scope unmistakable.

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 the tool is for fetching a single member, and its reference to 'the list' hints at the alternative list_members for multiple members. However, it does not explicitly state when to choose this over list_members or patch_member/delete_member, leaving the guidance implied rather than direct.

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

Deploy Server

Other Tools