Skip to main content
Glama
iliyalazarevwork-art

freelancehunt-mcp

List workspaces

list_workspaces
Read-only

List the active project or contest workspaces associated with your authenticated account.

Instructions

Active project or contest workspaces of the authenticated account.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNoprojects
pageNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior4/5

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

The annotations already declare readOnlyHint=true and openWorldHint=true, covering the lack of side effects. The description adds relevant context by specifying 'active' workspaces and restricting to the authenticated account, which goes beyond the annotations and provides meaningful behavioral expectations.

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?

The description is a single, concise sentence that conveys the essential purpose without any redundancy or unnecessary detail. It is well-structured and easy to parse, making it an efficient descriptor.

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?

While the description communicates the core function and the parameters are self-explanatory via the schema, there is no output schema or additional context about what a workspace is or what the returned items will contain. This leaves some ambiguity for an agent that is unfamiliar with the domain, though the intent is mostly clear.

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?

The schema provides strong coverage for both parameters: 'kind' has an enum and default, and 'page' has maximum and exclusiveMinimum constraints. The description adds no extra meaning to these parameters, so it neither improves nor detracts from the schema's clarity; the baseline of 3 is appropriate.

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 clearly states that the tool lists 'Active project or contest workspaces of the authenticated account,' specifying the resource (workspaces), scope (authenticated account), and filter (active vs. not). It also distinguishes between two kinds via the 'kind' parameter, making it immediately clear what the tool does.

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?

The description does not explicitly say when to use this tool versus the many sibling tools like list_my_projects, list_contests, or get_workspace. While the 'active' and 'authenticated account' scope is helpful, there is no direct comparison or exclusionary guidance, leaving the agent to infer the appropriate context.

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