Skip to main content
Glama
shukiv

blesta-mcp

by shukiv

Search services

search_services
Read-onlyIdempotent

Find client services by domain, hostname, username, package name, or service number, including module field values. Returns compact service records with client IDs.

Instructions

Find services across all clients by domain, hostname, username, package name or service number. Wraps Services.search (with search_fields to include module field values such as the domain). Returns compact service records with client_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fullNoRaw Blesta service objects
pageNo
queryYesDomain, username, package name or service number
search_fieldsNoAlso match module field values (domain, username, ...)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare the operation safe, read-only, idempotent, and non-destructive. The description adds useful context by revealing that it wraps Services.search, explains search_fields behavior, and states the return format ('compact service records with client_id'), which is valuable given there is no output schema.

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?

Three focused sentences with the primary purpose front-loaded, followed by the wrapper context and return shape. No filler or redundant restatement of schema details.

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 read-only search tool, the description covers purpose, scope, searchable fields, wrapper behavior, and return format. It does not detail pagination behavior or the exact contents of compact records, but the annotations and schema provide sufficient safety and defaults for correct invocation.

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

Parameters4/5

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

Schema coverage is 75%, and the description enriches the query and search_fields parameters with concrete examples such as domain, hostname, username, package name, and service number. The full and page parameters remain only schema-documented, but the description adds meaning beyond the schema overall.

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?

Description states a specific verb and resource: 'Find services across all clients by domain, hostname, username, package name or service number.' The phrase 'across all clients' differentiates it from sibling tools like get_client_services, and the service focus distinguishes it from search_clients.

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 broad cross-client search but does not explicitly state when to prefer this over get_client_services or other alternatives. There are no direct exclusionary guidelines or named sibling alternatives, so usage context is only implied.

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