Skip to main content
Glama

Defici Marketplace MCP Server

get_regions

Return all supported market regions with their id, country, currency, and languages. Use the region id as the market argument in search_listings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.7/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full behavioral burden. While it doesn't mention safety (this is presumably a read-only fetch tool), it does disclose the output fields (id, country, currency, languages), which gives the agent expectations about what the response will contain. Given the low risk nature (a list of static regions) and 0 parameters, the disclosure is reasonably complete, though it could note that no input is required.

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 sentences, zero wasted words. The first sentence states the purpose and output fields; the second provides the actionable usage tip connecting to search_listings. This is textbook conciseness with front-loaded purpose.

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

Completeness5/5

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

For a zero-parameter, no-output-schema tool that returns static market data, the description is fully adequate. It states what is returned, the fields included, and how to use the result. There are no nesting complexities, required parameters, or side-effects to disclose. The tool is simple enough that this description is genuinely complete.

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?

The tool has zero parameters, so the baseline is 4 per the rubric. The description appropriately references the returned 'region id' as a consumable value, which indirectly gives the agent context about the meaningful output. With no parameters, there's little parameter semantics to add.

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?

The description states precisely what the tool does: 'Return all supported market regions' with their specific fields (id, country, currency, languages). It clearly distinguishes itself from siblings (get_listing, list_categories, search_listings) by being the market-lookup tool. The verb 'Return' plus resource 'market regions' is specific and unambiguous.

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

Usage Guidelines5/5

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

The description explicitly tells when to use it and how: 'Use the region id as the market argument in search_listings.' This is an explicit cross-reference to a sibling tool, providing clear guidance on the tool's role in a workflow. This is exemplary usage guidance since it connects this tool's output to consumption by another tool.

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.

TDQS

A4.2/5.0
Disambiguation5/5

Each tool targets a clearly distinct resource or operation: listing search, listing detail, regions, categories, modules, platform overview, and subscription info. The descriptions also explicitly prevent confusion, such as noting that get_platform_overview is not a listings search result.

Naming Consistency4/5

Tool names follow a readable snake_case verb-first pattern: get_ for detail/info tools, list_ for enumerations, and search_ for queries. The main inconsistency is get_regions returning a full list while list_categories and list_modules use the list_ prefix for the same kind of enumeration.

Tool Count5/5

Seven tools is well-scoped for a read-only marketplace discovery server. Each tool provides a necessary capability without redundancy, and the count stays comfortably in the ideal range.

Completeness5/5

For its stated read-only discovery purpose, the surface is complete: search active listings, fetch listing details, retrieve region and category taxonomies, and understand platform context, modules, and subscription capabilities. No obvious dead ends or missing core operations exist within the declared scope.

Resources