Skip to main content
Glama
Ownership verified

Server Details

Appendix turns any AI health conversation into a board-certified physician's opinion — with a real prescription when clinically appropriate. Search medical literature and submit a clinical encounter for review, all from your agent.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.1/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a distinct purpose: listing available conditions, searching clinical knowledge, and submitting an encounter. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case: list_conditions, search_knowledge_base, submit_encounter. This is uniform and predictable.

Tool Count5/5

With 3 tools, the server is well-scoped for its purpose. Each tool is essential to the workflow of describing, researching, and submitting a medical issue.

Completeness5/5

The tool surface covers the full workflow: discover what conditions are handled, gather supporting information, and submit an encounter for review. No critical operations are missing.

Available Tools

3 tools
list_conditionsList conditions & medicationsA
Read-only
Inspect

List all conditions and medications available through Appendix

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryNoFilter by category name (case-insensitive, e.g. 'respiratory')
Behavior2/5

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

Annotations already indicate readOnlyHint=true and openWorldHint=true. The description merely restates the read-only nature ('List all...') and adds no additional behavioral details such as pagination, data format, or dynamic changes. No new context beyond the annotations is provided.

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, front-loaded sentence with no filler. It communicates the essential purpose immediately and earns its place without unnecessary detail.

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 simple nature of the tool (one optional parameter, no output schema, read-only annotations), the description is mostly complete. It states what is listed, and the schema handles filtering. However, it does not clarify what 'Appendix' refers to or describe the return structure, leaving slight room for ambiguity.

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 schema description covers the sole parameter 'category' with an example, achieving 100% coverage. The description does not add further parameter semantics, so the baseline score of 3 is appropriate based on 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 the verb 'List' and the resource 'conditions and medications', with a specifier 'available through Appendix'. This distinguishes it from siblings like search_knowledge_base and submit_encounter, which serve different purposes.

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 retrieving the full list of conditions/medications, but does not explicitly mention when to prefer it over search_knowledge_base or any exclusions. The context is sufficient to infer intent but lacks explicit guidance.

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

search_knowledge_baseSearch medical literatureA
Read-only
Inspect

Search Appendix's medical knowledge base for clinical literature, treatment guidelines, and reference material to help the user describe their medical issue

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results to return (1-10, default 5)
queryYesSearch query (clinical topic or question)
Behavior3/5

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

Annotations already declare readOnlyHint and openWorldHint, covering the safety profile. The description adds useful content scope but does not disclose return format, pagination, or search behavior. No contradiction with 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?

A single, front-loaded sentence contains the verb, resource, and purpose without redundancy. Every word contributes value.

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?

For a low-complexity search tool with complete parameter schema and helpful annotations, the description adequately covers purpose, content scope, and use case. It does not mention return value details, but the absence is not a significant gap for such a simple tool.

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% (query as clinical topic/question, limit with range and default), so the description adds no additional parameter-level detail. The baseline of 3 applies because the schema handles 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 ('Search') and identifies the exact resource (Appendix's medical knowledge base), along with the content types searched (clinical literature, treatment guidelines, reference material). This clearly distinguishes it from sibling tools like list_conditions and submit_encounter.

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 provides clear context for when to use the tool: to search clinical reference material and help the user describe a medical issue. However, it does not explicitly contrast with sibling tools or state when not to use it.

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

submit_encounterSubmit clinical encounterAInspect

Submit a clinical encounter letter to the Appendix physician team for review. The letter should be in Markdown format following the Appendix letter structure. Returns feedback on completeness or a checkout URL when ready. One of our board-certified physicians will personally review the submission and provide clinical guidance and a prescription if appropriate.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesClinical letter in Markdown format (500-10,000 characters)
imagesNoUp to 3 images to attach
session_tokenNoToken from a previous response to continue the same encounter
Behavior5/5

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

The description discloses that the submission is personally reviewed by a board-certified physician, may return a checkout URL, and could result in a prescription. This goes beyond the annotations (readOnlyHint=false, openWorldHint=true) by explaining the real-world workflow and side effects. There is no contradiction with 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 three sentences long, each serving a purpose: what the tool does, what the input should be and what it returns, and what happens after submission. It is front-loaded with the primary action and contains no redundant information.

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 moderate complexity (3 optional/nested parameters, no output schema), the description covers the essential aspects: purpose, input format, return behavior (feedback or checkout URL), and the human involvement. This provides sufficient context 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?

The input schema describes all three parameters with 100% coverage, so the baseline is 3. The description adds value by specifying that the query must follow the 'Appendix letter structure', which is not in the schema, and by implying that the images and session_token relate to attachment and continuation of a submission. This enriches the parameter understanding beyond 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 ('Submit'), the resource ('a clinical encounter letter'), and the recipient ('Appendix physician team for review'). This distinguishes it from sibling tools like list_conditions and search_knowledge_base, which are read-oriented.

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 provides clear context for when to use the tool: when you need to submit a clinical encounter for physician review. It specifies the required format (Markdown following Appendix letter structure) and the expected outcome (feedback or checkout URL). It does not explicitly mention alternatives, but the sibling tool names make the differentiation obvious.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    GTM signal intelligence suite for AI agents. Six tools: hiring signals, tech stack detection, company-to-LinkedIn resolution, ICP scoring, job board scanning, and a combined signals aggregator. Built for outbound sales workflows.
    11
    737
    1
    MIT
  • F
    license
    -
    quality
    C
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources