Skip to main content
Glama
gray-wilbee

fub-mcp

by gray-wilbee

list_groups

List real estate CRM groups by type (Agent or Lender) with optional sorting by id or name and custom query filters.

Instructions

List groups. (GET /groups)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNoSorts results based on the provided field name. Prepending the field with a minus sign (-) sorts the results in descending order.
typeNo`Agent` groups allow admins and agents and `Lender` groups allow lender role users.
extraQueryNoExtra raw query parameters not explicitly listed above — e.g. FUB custom field filters like custom.ClosingDate on /people or /deals. Keys and values are sent as-is.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It only discloses the HTTP GET method, which implies read-only behavior, but it says nothing about pagination, sorting defaults, filtering side effects, or return format. This is minimal behavioral disclosure beyond what the name already conveys.

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 extremely brief and front-loaded, containing no filler words. Every token earns its place, though it is so terse that it verges on under-specification. Still, for a simple list endpoint it is appropriately concise.

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

Completeness3/5

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

For a simple list tool with no required parameters and a fully self-describing schema, the description is minimally sufficient. It lacks context about what groups are, whether the list is scoped to the current user or all groups, and how results are paginated, but these are not severe gaps given the tool's low complexity.

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 the schema fully documents all three parameters. The description adds no additional parameter semantics, but the baseline of 3 is appropriate because the schema already does the heavy lifting.

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 the action (List) and resource (groups), with the HTTP method as a helpful hint. However, it does not distinguish itself from sibling tools like get_group or create_group, so it misses the discrimination that would earn a 5.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus alternatives such as get_group, create_group, or list_teams. The agent receives no context about when listing is preferred over fetching a specific group.

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