Skip to main content
Glama
andrewfinerx

FineRx MCP server

by andrewfinerx

Server Quality Checklist

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

  • Disambiguation4/5

    Most tools have clearly distinct purposes: search/get/compare for drugs, find_us_equivalent vs foreign_brands_for_drug are cleanly separated by direction, and get_savings_card vs email_savings_card are distinct (retrieve vs send). The only mild overlap is get_drug vs compare_prices (both return prices), but their inputs and outputs differ enough (slug vs NDC) that an agent can choose correctly.

    Naming Consistency4/5

    The set mostly follows a verb_noun pattern: search_drugs, get_drug, compare_prices, find_nearby_pharmacies, get_dataset_info, get_savings_card, email_savings_card, get_prescription_options, find_us_equivalent, foreign_brands_for_drug. Minor deviations: find_us_equivalent and foreign_brands_for_drug use a different verb style (find/foreign_brands_for) than the get_/search_/compare_/email_ pattern, but they are still readable and predictable.

    Tool Count5/5

    10 tools is well within the ideal 3-15 range and each tool covers a distinct aspect of the domain: search, details, price comparison, pharmacy locations, dataset info, savings card, email, prescription options, and international equivalence (both directions). No tool feels redundant or extraneous.

    Completeness5/5

    The domain is consumer prescription savings, and the surface covers the full journey: resolving a drug name (search_drugs), getting details (get_drug), comparing prices (compare_prices), finding pharmacies (find_nearby_pharmacies), getting/sending the savings card (get_savings_card, email_savings_card), handling no-prescription or brand-costly situations (get_prescription_options), and international drug mapping in both directions (find_us_equivalent, foreign_brands_for_drug). Dataset info and attribution are also covered. No obvious dead ends.

  • Average 4.7/5 across 10 of 10 tools scored. Lowest: 4.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 status not available
  • 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

  • Behavior3/5

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

    Annotations already cover the behavioral safety profile (readOnlyHint, idempotentHint, destructiveHint=false). The description adds the OpenStreetMap/ODbL data source, which is a useful data provenance note, but does not disclose edge-case behaviors such as data freshness or response limitations. With annotations present, this is acceptable but not particularly rich.

    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 compact and effective: one high-level sentence, then a short parameter guide, and a brief data-source note. It avoids excess phrasing and is front-loaded with the action. Divergence from schema or annotation is minimal, keeping the overall text easy to parse.

    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?

    With an output schema present and annotations covering safety/spatial openness, the description covers the main calling context: what the tool does, required parameters, and defaults. Missing details are minor like accepted chain values or error handling for invalid ZIP codes, but not essential for an agent to make a correct call in typical cases.

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

    Parameters5/5

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

    Schema description coverage is 0%, so the description must carry the meaning for all three parameters. It does this thoroughly: zip is defined as a 5-digit US ZIP, chains is explained as a comma-separated list (with the example 'walgreens,publix') and that 'null' defaults to all chains, and limit is said to cap locations per chain. This far exceeds the schema's basic titles and types.

    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 a clear action and resource: 'Find the nearest pharmacy locations to a US ZIP code, per chain.' It is specific about scope (US ZIP, per chain) and easily distinguished from sibling tools like search_drugs or compare_prices, which are about drugs/pricing rather than location lookup.

    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 its use case by describing the action, but it does not explicitly say when to use this tool versus alternatives or list exclusions. No siblings are referenced, and no 'use this when...' guidance is provided. The intended context is inferred from the purpose, not stated.

    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?

    The description reveals useful runtime behavior: return fields like observedAt and isLowest, the fact that the savings card may be relevant, and a caveat not to label a price as cheapest unless the offer says so. It does not discuss potential limitations like price recency or data availability, but the main behavior is well disclosed.

    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 focused and front-loaded with the core purpose, then gives output shape and usage cautions. A little dense, but every sentence adds operational value without repetition or filler.

    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 tells the agent how to invoke the tool, what the output contains, and how to present results responsibly. It does not explain the optional locale and channel parameters, but the critical workflow context and output semantics are covered.

    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?

    Because schema descriptions are essentially absent, the tool description adds important meaning for ndc and quantity, including the 11-digit NDC format. However, it leaves the locale and channel parameters unexplained, and it only partially compensates for the missing schema descriptions.

    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 compares FineRx prices for a single package identified by an 11-digit NDC and quantity. It also distinguishes the appropriate precondition ('when you know the exact package') from other lookup flows, so the agent can decide between this and sibling tools.

    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 explicitly says 'Use when you know the exact package' and tells the agent where to obtain an NDC if it does not already have one (get_drug's packages or the search flow). It also gives practical instructions about the savings card and how to report cheapest price, which helps correct invocation and response behavior.

    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, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds useful context by mentioning the attribution/disclaimer terms that consumers must honor, which goes beyond the structured annotations and clarifies the tool's non-obvious output aspect.

    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 compact and front-loaded: the first sentence summarizes the resource, and the second enumerates the returned elements without redundancy. Every sentence adds value and the structure is easy to parse.

    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?

    This is a simple, zero-parameter metadata endpoint with a rich output schema and comprehensive annotations. The description covers the dataset-level purpose, key return categories, and the important legal attribution context, leaving no critical gap for an agent deciding to call it.

    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 for this dimension is 4. The description correctly avoids inventing parameter details and focuses on what the tool returns, which is appropriate for a no-input endpoint.

    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 ('Get') with a clear resource ('FineRx dataset coverage, freshness, and attribution/disclaimer terms'). It clearly differentiates this metadata tool from the sibling search/price/savings tools by focusing on dataset-level information rather than individual drug or pharmacy data.

    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 clearly scopes the tool's role as dataset metadata retrieval, listing exactly what it returns (counts, latest observation date, legal terms). It doesn't explicitly name alternatives or exclusions, but given that it accepts no parameters and siblings are clearly operational tools, the context is sufficient.

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

  • Behavior5/5

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

    Beyond the readOnly/idempotent annotations, the description reveals that every option has a disclosure that must be read aloud, that a Medicaid note is included, and that the tool must not be framed as medical advice. These are non-obvious, invocation-relevant behaviors.

    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 front-loaded with purpose and triggers, then return shape, then safety caveats. It is detailed enough for a medical-context tool but every sentence carries a distinct job, with no filler.

    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 output schema covers return values, so the description's job is to provide usage context, which it does thoroughly, including disclosure handling and safety exclusions. It only falls short of fully complete by not documenting what locale affects or how it should be set.

    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?

    With 0% schema coverage, the description must define parameters itself; it does clarify that drug is an optional slug from search_drugs. However, locale is left with only its default and title, so the description only partially compensates for the missing schema documentation.

    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 first sentence names a specific operation and resource: 'Explain the routes to filling a prescription, including having none yet.' The description then enumerates the three output sections, which disambiguates it from price, pharmacy, and drug-info siblings.

    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 states exact trigger conditions ('person says they have no prescription, asks how to get one, or says the brand costs too much') and routes the drug parameter to search_drugs. It also sets firm boundaries about what must not be done, effectively covering when-not behavior.

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

  • Behavior5/5

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

    Annotations already declare readOnly, openWorld, idempotent, and non-destructive hints, and the description adds substantial behavior beyond that: it clarifies the output shape, warns that the MCP Apps interactive card is not a substitute, instructs the agent to still write the codes, limits saving options to one, and imposes accuracy constraints about insurance, pricing, and lowest-price claims.

    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 long but every section earns its place: usage triggers, parameter meanings, return contents, and agent rules. It is front-loaded with the primary purpose and structured into readable paragraphs. Slight redundancy exists in the output enumeration, but it compensates for the absence of an output schema.

    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 tool with no output schema and only minimal parameter schemas, the description is exceptionally complete. It covers return values, side-channel presentation behavior, usage constraints, pricing caveats, and all three parameters. An agent has enough context to invoke it correctly and handle its results appropriately.

    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 0%, so the description carries the full burden. It explains drug as a slug from search_drugs that may add a price, locale as a language code with a defined fallback, and channel as a link-tagging value. Each parameter is meaningfully described, though channel could be more precise about expected values.

    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 a specific verb ('Get'), a specific resource ('the free FineRx discount card'), and enumerates the concrete outputs: codes, usage steps, and saving methods. It is clearly distinguishable from siblings like search_drugs or compare_prices.

    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 names three trigger conditions: after quoting a FineRx price, when asked about paying less, or when the card is requested by name. It does not explicitly contrast with email_savings_card or other siblings, but the conditions are concrete enough for an agent to select this tool correctly.

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

  • Behavior5/5

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

    Annotations already mark the call as read-only, idempotent, and non-destructive, and the description is consistent with those. It adds value by disclosing that the response includes a savings card, that locale values are 'en'/'es', and that channel tags links for attribution. The price-date guardrail is additional behavioral context beyond the schema.

    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 definition front-loads the verb and resource, then proceeds from precondition to return payload to parameter semantics to usage guardrails in a logical order. At roughly 100 words, every sentence adds distinct information and none is redundant with the schema.

    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 retrieval tool with an output schema, rich annotations, and only three parameters, the description gives an agent everything needed to invoke it correctly: input source, param meaning, return structure, and two concrete invariants about price display. There are no obvious gaps in selection or invocation context.

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

    Parameters5/5

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

    With 0% schema description coverage, the description carries the full burden and succeeds: slug is tied to a search_drugs result, locale is constrained to 'en' or 'es', and channel's attribution purpose is explained. Each parameter receives meaningful real-world semantics rather than just a name/default.

    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 'Get a FineRx drug's details: coverage stats, variants, and the savings card,' naming the exact resource and the three payload components. It also anchors the tool to search_drugs via slug, which sets it apart from siblings like compare_prices and get_savings_card even though savings card data appears here.

    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 says 'Use when you have a slug from search_drugs,' giving a concrete precondition for invocation. It adds operational guardrails ('Do not quote a price without its observation date, and offer the card whenever you quote one') that govern when this tool's output should be used. It does not explicitly contrast itself with get_savings_card or compare_prices, so it lacks explicit when-not/alternative guidance.

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

  • Behavior5/5

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

    Beyond the annotations, the description discloses meaningful behavior: the consent requirement, that the message contains only the card, that FineRx does not store the address, the masked return format, and the proper error-handling response. This gives the agent a clear mental model of side effects and privacy implications.

    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 compact, front-loaded with the core purpose, and organized into clear short directives covering prerequisites, behavior, return values, and prohibited actions. Every sentence adds operational value without unnecessary elaboration.

    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?

    The combination of the detailed description, annotations, and output schema fully equips an agent to invoke the tool safely and correctly. It covers consent, address handling, error response, and fallback behavior, leaving little unstated. The locale parameter is the only minor gap, but it has a default and is not essential for the core call path.

    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 input schema has 0% description coverage, but the tool description compensates well for email and consent by explaining that consent must be explicitly obtained and set to true. It does not explain the 'locale' parameter, which remains ambiguous, so it is not a perfect compensation.

    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 first sentence states a specific action ('Email the free FineRx discount card') and the exact target ('to an address the person gave you'). This clearly distinguishes it from sibling tools like get_savings_card, which retrieves rather than sends.

    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 states when to use the tool ('ONLY after the person has given an email address AND confirmed they want the card sent there') and includes explicit prohibitions ('Do not call without an explicit yes', 'do not retry a refusal'). It also offers fallback alternatives on error: offer the image or link instead.

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

  • Behavior5/5

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

    Annotations declare readOnlyHint=true and destructiveHint=false, but the description goes beyond by detailing the output structure (usClass meanings, found flag, guidance being 'ONE vetted sentence' to quote verbatim) and explicit behavioral rules (do not translate/reword guidance, do not call the US drug the same product). This discloses important response-format expectations that annotations do not cover, with no contradictions.

    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 detailed but highly structured. It opens with the purpose, then usage, output fields, next steps, and finally safety warnings. Every sentence carries information that an agent needs; there is no fluff. The length matches the complexity of the tool, and it is front-loaded with the most critical usage context.

    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 the tool's complexity, the description covers everything necessary: when to use, what parameters mean, what the response contains, how to chain subsequent tool calls (compare_prices, get_drug), and how to present results to the user. The existence of an output schema further reduces the burden on the description for return types. It is complete for an agent to invoke correctly.

    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 0%, so the description must compensate. It explains brand indirectly via examples, and explicitly defines country ('picks between brands of the same name sold in different places') and locale ('a language code... host's own locale'). However, the `channel` parameter is not mentioned at all, and its purpose is left to the schema's default. Despite this minor gap, the description adds significant semantic value for the three primary parameters, so a 4 is warranted.

    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 explicitly states the core function: 'Find out what a medicine from another country is in the US, and what it costs.' It provides concrete examples of inputs (No-Spa, paracetamol) and differentiates from sibling tools like search_drugs and get_drug by focusing on the US-equivalent lookup. It is clear, specific, and instantly distinguishable.

    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 precise trigger conditions: 'Use when the person names a medicine that is not a US product...' and also covers the question phrasing ('what is this called in the US?'). It explains optional parameter usage (country, locale) and provides explicit next steps: quote guidance, call compare_prices or get_drug, offer the card. It also states what not to do (e.g., don't suggest substitutions). This is exemplary usage guidance.

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

  • Behavior5/5

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

    Annotations already mark the tool as read-only, idempotent, and non-destructive. The description adds substantial useful behavior beyond that: returned fields, the special meaning of rx_alternative as a different medicine, the guarantee that brands with no US equivalent never appear, and explicit cautions against presenting interchangeability or advising purchases/imports.

    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?

    Every sentence carries distinct information: purpose, usage, output fields, ordering guidance, and safety guardrails. The key purpose and usage are front-loaded, and the cautions are placed after the functional details where they are most relevant.

    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 single-parameter read-only tool with an output schema and rich annotations, the description covers everything an agent needs: source of the input, expected output, result interpretation, ordering preference, and limitations. No critical gap remains.

    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 0%, so the description must compensate for the bare string parameter. It does this well by explaining that slug comes from search_drugs and illustrating with a user-phrased question, which tells the agent where to source the value. It stops short of defining the exact slug format, so a 4 is appropriate rather than a 5.

    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 first sentence declares a specific verb and resource: 'Find what a US drug is called abroad,' and explicitly contrasts it with the sibling find_us_equivalent. This makes the tool's scope immediately distinguishable from related tools without needing to inspect schemas.

    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 concrete when-to-use guidance with a realistic user example ('what is lisinopril called in Mexico?') and states that slug comes from search_drugs. It also names the reverse sibling, allowing an agent to route between them correctly.

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

  • Behavior5/5

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

    Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so safety is covered. The description adds meaningful behavioral context: the response includes slug, kind, and fromPrice; foreignBrands carries matched home-country brands with active ingredients and US generic mappings; and the empty-results-plus-foreignBrands case signals a non-US medicine. This goes well beyond what annotations convey.

    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 tightly structured and front-loaded with the core purpose. Every sentence earns its place: primary behavior, return fields, slug usage, foreign-brand behavior, and the routing condition. No filler or redundant restatement of the tool name or schema.

    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 read-only search tool with a rich output schema and strong annotations, the description covers the essential contextual decisions: how to use the returned slug, how to interpret foreignBrands, and when to escalate to find_us_equivalent. Nothing critical is missing for an agent to select and invoke the tool correctly.

    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 description coverage is 0%, so the description must compensate. It enriches the required query parameter by defining it as 'name or localized alias,' which is valuable. The optional limit parameter is not described, but its meaning and default are already provided in the input schema, so the gap is minor.

    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?

    States a specific verb and resource: 'Search FineRx for drugs by name or localized alias.' It explicitly frames the tool as the first step to resolve a drug name to a slug, and its reference to find_us_equivalent differentiates it from the sibling that handles foreign-brand mapping. The purpose is unambiguous and clearly distinct from get_drug and other siblings.

    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?

    Provides explicit usage guidance: 'Use this first to resolve a drug name to a slug.' It also gives a concrete conditional rule for when to instead call find_us_equivalent: when results is empty and foreignBrands is not. This tells the agent not only when to use the tool but also when to route to an alternative.

    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

FineRx MCP server MCP server – quality and maintenance score on Glama

Copy to your README.md:

Score Badge

FineRx MCP server MCP server – quality and maintenance score on Glama

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/andrewfinerx/finerx-mcp'

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