Skip to main content
Glama
Aki894

RxNav MCP Server

by Aki894

get_generic_name

Convert brand drug names or RxCUIs to their generic names for accurate medication identification and terminology standardization.

Instructions

Get the generic name(s) for a given drug name or RxCUI. Converts brand names to their corresponding generic names.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
drug_identifierYesDrug name (brand or generic) or RxCUI to get generic name for

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It states the conversion but says nothing about whether the lookup hits a cache/database, what happens if the drug is not found, whether multiple generics can be returned, or the return format. This is a substantial gap for an unannotated lookup tool.

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?

Two short sentences with no waste, front-loading the operation. Slightly redundant since the second sentence largely restates the first.

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?

For a lookup tool with no annotations and no output schema, the description should clarify edge cases (unknown identifiers, multiple matches) and return shape. It leaves return behavior entirely undefined, which is a significant shortfall given the absence of structured behavior signals.

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?

Schema description coverage is 100% – the drug_identifier parameter is already documented as accepting a drug name (brand or generic) or RxCUI. The description repeats the accepted input types without adding syntax, format, or validation details beyond the schema. Baseline 3 is correct.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource: converting a drug name or RxCUI into its generic name(s). The conversion direction is clear. Sibling differentiation is partial – get_brand_names is the inverse operation and is implied but not named.

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 brand-to-generic conversion but gives no explicit when-to-use or when-not-to-use guidance and does not name the alternative tools (get_brand_names, search_drug_by_name) that overlap in scope.

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