Skip to main content
Glama

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.0

  • Disambiguation4/5

    Most tools target distinct actions (list, generate, buy, extend), but `acquire_proxy` overlaps somewhat with `get_proxies` and `generate_proxy_list`, and `check_balance` vs `get_usage` could be confusing without careful reading. Descriptions mostly clarify the intended use cases.

    Naming Consistency5/5

    All tool names follow a consistent verb_noun pattern (list_providers, get_proxies, generate_proxy_list, buy_proxies, etc.) with snake_case throughout. Even `scrape` and `acquire_proxy` fit the verb-first style.

    Tool Count5/5

    11 tools is well-scoped for a proxy management server. Each tool addresses a distinct need: provider discovery, proxy listing/generation, account checks, purchasing, and usage. No redundancy or bloat.

    Completeness4/5

    The surface covers the core proxy lifecycle: view providers, generate/list proxies, buy/extend them, and monitor balance/usage. Missing are configuration tools (e.g., to set up providers) and a deletion option, but these are minor gaps that agents can work around.

  • Average 3.7/5 across 11 of 11 tools scored. Lowest: 3.1/5.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 4 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior2/5

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

    The description adds minimal behavioral context beyond the annotations. Annotations already declare readOnlyHint=true and openWorldHint=true, and the description simply restates the fetching behavior without detailing rate limits, authentication, costs, or error handling. It lacks the depth expected for a network-scraping tool.

    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, well-structured sentence that front-loads the core action and resource. It contains no fluff and is appropriately sized for its purpose.

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

    Completeness2/5

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

    Despite having an output schema and annotations, the description is incomplete for a 5-parameter tool with low schema coverage. It lacks details on required parameters, optional behavior (render_js, country), and integration with sibling tools. An agent could not reliably determine how to fill all parameters from this description alone.

    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?

    Schema description coverage is only 20% (only 'premium' is described), and the description does not compensate. It mentions examples of provider values ('scraperapi, scrapingbee') and the URL implicitly, but leaves country, render_js, and required provider semantics unclear. This is insufficient for correct invocation.

    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 the tool's function: 'Fetch a URL through a managed scraping API.' It uses a specific verb ('Fetch') and resource ('URL'), and the managed scraping API context distinguishes it from sibling proxy-management tools.

    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 provides no explicit guidance on when to use this tool versus alternatives. It does not mention exclusions or point to sibling tools like list_providers or get_proxies. The intended use is implied by the tool's name and purpose, but there is no actionable comparison.

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

  • Behavior3/5

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

    Annotations already declare readOnlyHint=true, covering the safety profile. The description adds that results are scoped to a provider, which is a useful contextual detail, but it does not disclose additional behaviors like required permissions, error conditions, or output specifics. With annotations covering the key safety trait, a score of 3 is appropriate.

    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 immediately states the tool's purpose. It is front-loaded with the action and resource, containing no filler or redundant information.

    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?

    An output schema exists, so return values do not need to be described. However, the description lacks details about the optional proxy_type parameter and how it affects the results, and it does not mention any prerequisites or context for the provider parameter. For a simple listing tool this is minimally viable but has clear gaps.

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

    Parameters1/5

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

    The schema description coverage is 0%, meaning the description must compensate for parameter meaning. The description only mentions "with a provider" but does not explain the provider parameter or the optional proxy_type filter. This leaves both parameters semantically unexplained, providing no value beyond the bare schema.

    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 uses a specific verb "list" and clearly identifies the resource as "countries/locations targetable with a provider." This distinguishes it from sibling tools like list_providers or get_provider_info, which focus on providers rather than country-level targeting.

    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 usage when you need to know which countries are available for a given provider, but it does not explicitly state when to use this tool versus alternatives, nor does it mention exclusions or conditions. This is an implied usage scenario, not explicit guidance.

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

  • Behavior3/5

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

    Annotations already declare readOnlyHint=true and openWorldHint=true, so the safe read-only nature is known. The description adds context about returning balance/remaining allowance, but does not disclose specifics like response format or whether the provider parameter is a name or ID. With annotations covering safety, this description provides minimal additional behavioral context beyond the purpose, warranting a mid-range score.

    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 is front-loaded with the action and resource. It contains no redundant words or filler, every word contributes meaning, and it is appropriately sized for the tool's simplicity.

    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?

    The tool is simple with one parameter, an output schema exists, and annotations indicate read-only behavior. The description clearly states the core purpose and scope. While it lacks usage guidelines and parameter details, these are partially covered by the presence of sibling tools and the output schema. Overall, the description is sufficiently complete for a basic balance-check tool, though not exhaustive.

    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 schema has one required parameter 'provider' with no description, and schema coverage is 0%. The description says 'for a provider', which clarifies that the parameter identifies the provider, but it does not define what values are acceptable, whether it is an ID or name, or how it relates to business logic. This is insufficient compensation for the zero coverage, leaving the agent unsure about parameter semantics.

    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 uses a specific verb ('Check') and clearly identifies the resource ('account balance / remaining traffic allowance') and scope ('for a provider'). It distinguishes itself from siblings like 'get_usage' by focusing on balance/allowance rather than usage. The phrasing is unambiguous and directly states the tool's function.

    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 provide any guidance on when to use this tool versus alternatives. There is no mention of related tools such as 'get_usage' or 'list_providers', nor any exclusions or prerequisites. The usage context is only implied by the tool's purpose, leaving the agent without explicit decision support.

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

  • Behavior4/5

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

    Annotations indicate readOnlyHint=false and openWorldHint=true, which is consistent with extensions. The description adds the critical warning 'Spends real money,' which is valuable behavioral context beyond the annotations. It also implies that proxies must already exist, but lacks details on failure modes or reversal.

    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 deliver the core action and the most important risk warning. No fluff or repetition; the structure is front-loaded and efficient.

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

    Completeness2/5

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

    The description is too brief given the 3-parameter schema and absence of parameter explanations. It omits operational details like which provider to specify, where proxy IDs come from, and how period_days affects the extension. While an output schema exists, the tool still lacks context for safe selection and invocation.

    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?

    Schema coverage is 0% with no descriptions for provider, proxy_ids, or period_days. The description clarifies that proxy_ids are IDs of existing proxies ('by their IDs'), but provider and period_days remain ambiguous. Provider's possible values and period_days' constraints are only found in the schema.

    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 the action: 'Extend/renew existing proxies by their IDs.' The verb 'extend/renew' and resource 'existing proxies' specify exactly what the tool does, and the phrase 'by their IDs' distinguishes it from tools like buy_proxies that create new proxies.

    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?

    No guidance is provided on when to use this tool versus alternatives such as buy_proxies or acquire_proxy. The description only states the operation and does not mention appropriate contexts, prerequisites, or exclusions.

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

  • Behavior3/5

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

    Annotations already indicate readOnlyHint=true and openWorldHint=true, covering safety and dynamic behavior. The description adds that the tool provides traffic/request usage statistics, which is a slight semantic clarification, but it does not disclose any additional behaviors such as pagination, date filtering, or required permissions beyond what annotations imply.

    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, short sentence that is front-loaded with the main action and object. It contains no filler or redundant information, making it highly efficient.

    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?

    Given the tool's simplicity (one required parameter, read-only, output schema present), the description is mostly complete. It lacks explicit usage guidance and parameter details, but the core purpose is clear. The absence of deeper context is acceptable for this low-complexity tool.

    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?

    Schema has one parameter, 'provider', with 0% description coverage. The description mentions 'for a provider' but does not clarify valid values (e.g., provider ID, name, or format). Since the description does not compensate for the lack of schema descriptions, the semantics remain largely inferred from the parameter name.

    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 the verb 'Get' and the specific resource 'traffic / request usage statistics for a provider', which distinguishes it from sibling tools like get_provider_info (provider details) and check_balance (financial balance). It is unambiguous and easily understood.

    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 provides no explicit guidance on when to use this tool versus alternatives. It does not mention any prerequisites, exclusions, or mention of sibling tools. Usage context is only implied by the tool name and generic resource description, so an agent receives limited direction.

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

  • Behavior3/5

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

    Annotations already mark this as read-only and open-world, so the description doesn't need to restate safety. It adds useful output behavior: 'Each proxy in the result has a url field usable directly as an HTTP/SOCKS5 proxy.' But it does not disclose details like whether it requires existing provider accounts, how it interacts with count limits, or any error behavior. With annotations covering safety, a 3 is appropriate.

    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, front-loaded with the main purpose, then a useful output detail and provider recommendation. Every word earns its place with no redundancy or filler.

    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 provides the core purpose and a key output detail, and an output schema exists, which reduces the burden. However, it does not explain prerequisites (e.g., whether a provider is needed from list_providers), how this differs from get_proxies, or the meaning of 'generate' in a read-only context. Given the tool's complexity (10 params, sibling tools), this is a noticeable gap but not a total failure.

    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?

    Schema coverage is only 40%, with descriptions for country, rotation, proxy_type, and session_duration. The tool description mentions 'geo-targeting' and 'rotation' which vaguely points to several parameters but does not explicitly explain any of them. It fails to clarify the required 'provider' parameter or 'count'/'protocol'. This does not sufficiently compensate for the low schema coverage.

    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 a specific action and resource: 'Generate ready-to-use proxy strings with geo-targeting and rotation.' It also adds that each result has a 'url' field usable directly as an HTTP/SOCKS5 proxy, which distinguishes it from retrieval tools like get_proxies. This is a precise, non-tautological purpose.

    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 gives clear context: 'Best for residential/rotating providers (e.g. iproyal).' This tells the agent when this tool is appropriate. However, it does not explicitly mention alternatives or exclusions (e.g., 'use get_proxies for existing proxies'), so it stops short of a 5.

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

  • Behavior4/5

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

    Annotations already declare readOnlyHint and openWorldHint, so safety is covered. The description adds context about the nature of retrieved data ('capabilities and configuration status'), which informs the agent of the return content without repeating annotation fields.

    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?

    A single sentence with a clear verb and object. It is front-loaded and contains no redundant words, earning maximum conciseness.

    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 tool is simple with one parameter and an output schema exists, but the parameter semantics are undefined and no usage alternatives are mentioned. The description is adequate for a basic read-only lookup but leaves gaps in parameter guidance.

    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?

    Schema description coverage is 0%, and the description does not explain what the 'provider' parameter should contain (e.g., ID, name, or slug). It only references 'single provider', leaving the agent to guess the expected value format.

    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 the tool fetches capabilities and configuration status for a single provider. The verb 'Get' and the resource are specific, and it distinguishes from sibling tools like list_providers by scoping to one provider.

    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 usage for inspecting a specific provider, but does not explicitly contrast with alternatives such as list_providers. There is no mention of when to prefer this over other tools, so it provides only implicit guidance.

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

  • Behavior4/5

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

    Beyond the readOnlyHint and openWorldHint annotations, the description discloses the selection algorithm (first configured provider that can serve the requested type, preferring generation over listing) and that it works across any configured provider. It does not describe failure behavior or rate limits, but the annotations cover the safety profile.

    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 two sentences, front-loaded with the core function, and each sentence adds value—purpose and usage guidance. No waste.

    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?

    The description covers core function, usage context, and selection behavior. It does not explain the country parameter's role or what happens when no provider matches, but the output schema handles return values and the tool is simple with only two optional parameters. Thus it is largely complete but with noticeable gaps.

    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 description references 'requested type' but does not explain the country parameter or confirm how parameters filter provider selection. With schema coverage at 50% (country lacks a description), the description fails to compensate for the undocumented parameter, leaving country semantics unclear.

    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 the tool obtains a single ready-to-use proxy from any configured provider, distinguishing it from sibling tools like get_proxies (plural) and generate_proxy_list (list generation). It also notes the provider selection logic (first available, preferring generation over listing), making its scope and behavior obvious.

    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?

    It explicitly frames the tool as a convenience for when you need a proxy quickly ('I just need a proxy now'), and directs users to 'more specific tools' for provider control, implying a when-not. However, it does not name the specific alternative tools, relying on the sibling list for that information.

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

  • Behavior4/5

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

    Annotations already indicate readOnlyHint=false and openWorldHint=true, but the description adds critical context: 'spends real money on the provider account' and 'only available for providers that support programmatic ordering.' This exceeds the annotation baseline without contradicting it, though it could disclose failure/refund behavior.

    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 tight sentences: the first states the action, the second warns about real-money impact, and the third gives availability guidance. No filler or redundant phrasing—every sentence earns its place.

    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?

    The description covers the essential context for selection and invocation: purpose, cost warning, and provider prerequisite. Combined with the output schema (present but not shown), this is sufficient for most agent decisions. Slightly limited by lack of parameter guidance, but that is captured in lower parameter semantics score.

    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?

    Schema description coverage is only 17% (only proxy_type has a description). The description does not compensate by explaining parameters like country, protocol, quantity, or period_days. It only mentions 'new proxies' and provider support, leaving the agent to infer parameter meanings from names and schema constraints.

    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 uses a specific verb+resource combination ('Purchase new proxies') and clarifies scope by noting it's for new purchases only. It distinguishes from sibling tools like list_proxies and extend_proxies by emphasizing the monetary transaction and programmatic ordering requirement.

    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?

    Provides clear context: use when buying new proxies, not for listing or extending. Explicitly instructs to check list_providers first and mentions provider-specific availability, giving strong situational guidance. Does not explicitly name alternatives but the 'new' vs 'extend' distinction is implied.

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

  • Behavior3/5

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

    Annotations already declare readOnlyHint=true and openWorldHint=true, covering the safety and completeness profile. The description adds 'already on your account' as scoping context but does not disclose additional behavioral traits such as pagination, filtering behavior, or provider-specific caveats. With annotations present, this is adequate but not exceptional.

    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, no fluff, front-loaded with the core action. The first sentence states exactly what the tool does; the second provides decision-relevant guidance. Every sentence earns its place.

    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?

    Given the output schema, annotations, and sibling context, the description is mostly complete for an agent to select and invoke the tool. It could add a note about the optional filter parameters, but the schema partially covers those, and the core use case is well explained.

    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?

    Schema description coverage is only 25%, and the description does not explain the limit, country, or proxy_type parameters beyond the schema's own partial descriptions. It clarifies only the provider dimension ('with a given provider'), leaving the other parameters under-explained for a low-coverage schema.

    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 clear verb and resource: 'List proxies already on your account with a given provider.' It distinguishes itself from the sibling generate_proxy_list by explicitly contrasting listing existing fixed-IP proxies vs generating rotating/residential pools.

    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?

    It provides explicit usage guidance: 'Best for providers that sell fixed IPs' and directly names the alternative for rotating/residential pools ('prefer generate_proxy_list'). This clearly tells an agent when to choose this tool over siblings.

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

  • Behavior4/5

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

    Annotations already provide readOnlyHint=true, so the read-only nature is known. The description adds valuable context about what the tool shows (proxy types, supported operations, configuration status, env vars) and its role as the first call, enriching understanding beyond the annotations.

    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 two concise sentences, front-loaded with the primary action. The second sentence packs the 'always call first' directive and the output content list without wasted words.

    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 simple list tool with one optional parameter and an output schema present, the description fully covers purpose, scope, and call order. Annotations handle safety, and the output content is specified, leaving no meaningful gaps.

    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 only parameter 'configured_only' has a complete schema description (100% coverage), so baseline 3 applies. The tool description does not add further parameter semantics beyond the schema's own explanation.

    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 the tool lists all supported proxy providers and their capabilities, with a specific verb and resource. It distinguishes itself from siblings like get_provider_info (details for one provider) and get_proxies (proxies, not providers).

    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 commands 'Always call this first,' giving a clear when-to-use directive. It does not name specific alternatives or exclusions, but the strong entry-point indication is sufficient for this simple list tool.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

MCProxy MCP server

Copy to your README.md:

Score Badge

MCProxy MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/evgenygurin/MCProxy'

If you have feedback or need assistance with the MCP directory API, please join our Discord server