Skip to main content
Glama
iliyalazarevwork-art

freelancehunt-mcp

List my projects (employer side)

list_my_projects
Read-only

Lists projects published by the authenticated account. Requires an employer profile; returns an error for freelancer-only accounts.

Instructions

Projects published by the authenticated account. Requires an employer profile — a freelancer-only account gets HTTP 400 from this endpoint.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

The readOnlyHint and openWorldHint annotations already cover the read-only nature, and the description adds a meaningful behavioral constraint: the endpoint requires an employer profile and errors for freelancers. There is no contradiction with the annotations, and the additional auth/error information goes beyond what annotations alone provide.

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 short sentences with no filler. The core scope is front-loaded and the important prerequisite/error behavior follows immediately, making it easy to scan.

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?

The description adequately captures the main scope and the auth constraint, which is the most critical contextual detail. However, it omits any explanation of the page parameter or what the response contains, and there is no output schema to fill that gap.

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?

The input schema has 0% description coverage, and the description does not mention the page parameter or pagination at all. The parameter name and constraints imply what it does, but the description itself adds no semantic value to compensate for the schema's lack of prose.

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 title 'List my projects (employer side)' and description 'Projects published by the authenticated account' clearly identify the action, resource, and scope. The employer-side qualifier distinguishes it from siblings like list_projects and list_my_bids.

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

Usage Guidelines4/5

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

The description explicitly states the prerequisite of an employer profile and warns that freelancer-only accounts will get HTTP 400, which effectively tells agents when not to use the tool. It does not name an alternative tool for freelancers, so it stops short of fully explicit routing guidance.

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