Skip to main content
Glama

Moxlade — Upwork buyer intelligence

Market rate for a skill

rate_benchmark
Read-onlyIdempotent

What freelancers with a given skill LIST as their hourly rate, as a distribution rather than an average.

Use this to sanity-check a rate before quoting, or to see whether a posted budget is above or below what the market asks. skill is matched loosely against profile titles, so "django", "react native" and "smm" all work; country optionally narrows to one market, spelled as it appears on a profile ("United States", "Poland").

Returns p25 / median / p75 / p90, the share holding Top Rated, and the sample size. AGGREGATE ONLY — never a name, never a row. Nothing is returned below a floor of five freelancers, because a statistic over fewer than that describes an individual; you get insufficient_data instead of a number.

These are LISTED rates, what freelancers ask. It is not what buyers paid — for that, ask get_buyer_quality about a specific client.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
skillYesa skill name; matched loosely against title, skills and inferred skills. Must not be empty — there is no 'all skills' query.
countryNoNarrow the census to one country, written as the census spells it ("United States", "Ukraine"). Omit for the global distribution. Narrowing can drop the sample below the five-profile floor, which is answered as insufficient_data rather than as a number.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
nNoFreelancers in the sample.
p25No25th percentile of listed rates.
p75No75th percentile.
p90No90th percentile.
noteNoPresent when the sample was too small to report.
basisNoThat these are rates freelancers ASK, not what buyers paid.
skillNoThe skill asked about.
medianNoMedian listed rate.
countryNoThe country, when one was given.
k_floorNoThe floor itself.
currencyNoAlways USD/hr.
top_rated_shareNoShare of the sample holding Top Rated.
insufficient_dataNoTrue below the five-profile floor. Not an error: a statistic over fewer than five describes an individual.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.8/5.0
Behavior5/5

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

Even though annotations already declare readOnlyHint=true and idempotentHint=true, the description goes well beyond them. It discloses the privacy guarantee ('AGGREGATE ONLY — never a name, never a row'), the five-profile minimum floor with its insufficient_data fallback, the loose-matching behavior of skill, and the distinction between listed and paid rates. These are substantial behavioral traits that the annotations cannot convey, and none contradict the structured metadata.

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

Conciseness4/5

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

The description is longer than average but every sentence earns its place — definition, use cases, parameter behavior, return shape, privacy floor, and sibling differentiation are each covered once with no filler. The core definition is front-loaded before the usage guidance. Minor redundancy with the schema's mention of the five-profile floor and insufficient_data keeps it from a 5, but the added reasoning ('a statistic over fewer than that describes an individual') justifies the repetition.

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?

Given that an output schema exists and annotations are rich, the description covers everything an agent needs to call this tool correctly: return shape (p25/median/p75/p90, Top Rated share, sample size), the insufficient_data edge case, privacy constraints, parameter matching semantics, and when to choose a different tool. There are no meaningful gaps for an aggregate read-only query tool.

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 100%, so the baseline is 3 and the schema already documents both parameters well. The description adds genuine value on top: concrete valid skill examples ('django', 'react native', 'smm'), reassurance that country must be spelled as it appears on a profile, and the behavioral consequence that narrowing by country can trigger insufficient_data. This exceeds pure schema repetition without being redundant.

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 opens with a specific, precise definition: 'What freelancers with a given skill LIST as their hourly rate, as a distribution rather than an average.' This names the resource (listed freelancer rates), the operation (benchmarking), and the distinguishing trait (distribution vs. average). It also explicitly differentiates from get_buyer_quality, ensuring the agent can separate it from its closest sibling without inspecting either schema.

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 gives explicit when-to-use context: 'Use this to sanity-check a rate before quoting, or to see whether a posted budget is above or below what the market asks.' It then names the alternative tool and the condition that selects it: 'It is not what buyers paid — for that, ask get_buyer_quality about a specific client.' Both the trigger conditions and the exclusion are spelled out, leaving nothing to inference.

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.6/5.0
Disambiguation5/5

Each tool maps to a distinct resource or action: search, filter validation, saved-search management, buyer lookup, buyer quality, job scoring, market rates, and account/plan introspection. The get_* tools are cleanly separated by complements such as get_job vs get_job_score and get_buyer vs get_buyer_quality, so an agent should not struggle to pick the right one.

Naming Consistency5/5

All tool names consistently use snake_case verb_noun or verb_adjective_noun patterns, such as search_jobs, check_prefilter, delete_saved_search, and get_buyer_quality. There are no camelCase names, vague verb-only names, or mixed conventions.

Tool Count5/5

At 15 tools, the server sits exactly within the ideal range and each tool earns its place in the workflow. The set covers discovery, enrichment, saved-search lifecycle, and account introspection without obvious redundancy.

Completeness4/5

The core workflow is well covered: search, prefilter validation, job detail, scoring, buyer identity, payment quality, saved-search create/list/delete, and plan/activity visibility. The main gap is the lack of an update operation for an existing saved search, such as changing its filter or attaching a webhook later; this is a minor workaround rather than a blocking dead end.

Resources