Skip to main content
Glama
inakirealise

BoondManager MCP Server

by inakirealise

boond_accounts_create

Create a new user account by providing username, email, and role. Assign status to activate, suspend, or deactivate the account.

Instructions

Create a new account

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
roleYes
emailYes
statusNo
usernameYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.4/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 of behavioral disclosure. 'Create a new account' implies a write operation, but it does not state whether the account is immediately active, whether email verification is required, whether duplicate usernames/emails are rejected, or what the response contains. The description adds no behavioral context beyond the obvious mutation.

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

Conciseness3/5

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

The description is extremely short and front-loaded, which is good for conciseness, but it is under-specified. A single sentence with no additional context is not a well-structured description; it is merely a label. It earns a 3 because it is not verbose, but it fails to provide useful structure or detail.

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 the tool has 4 parameters, 3 required, no output schema, and no annotations, the description is incomplete. An agent needs to know what an 'account' is in this domain, what the required fields mean, and what happens after creation. The description provides none of this, making it inadequate for reliable invocation.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate for the schema's lack of parameter documentation. The description does not mention any parameters, leaving the agent to infer that username, email, role, and status are the relevant fields. The schema provides enums for role and status, but the description adds no meaning about how these fields interact or which are required beyond the schema's required list.

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

Purpose3/5

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

The description 'Create a new account' states a clear verb and resource, but it does not distinguish this tool from the many other create tools in the sibling list, nor does it clarify what kind of 'account' is being created (e.g., user account, login account, client account). It is minimally clear but lacks specificity.

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?

No guidance is provided on when to use this tool versus alternatives. The sibling list includes boond_accounts_search, boond_accounts_get, and boond_accounts_update, but the description does not mention them or any conditions for choosing this create tool. The agent must infer usage from the name alone.

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