Skip to main content
Glama

Server Details

Peptide and GLP-1 dosing math (dose to syringe units) plus search over Shotlee's articles.

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 3.8/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: calculate_reconstitution handles dosing math, search_articles finds blog posts, and get_article retrieves a specific article by slug. There is no overlap in functionality, so an agent can easily select the right tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case: calculate_reconstitution, get_article, search_articles. This makes the tool set predictable and easy to navigate.

Tool Count4/5

Three tools is slightly small but appropriate for a niche server that combines a reconstitution calculator with blog content retrieval. Each tool serves a distinct purpose and none are redundant, though the set feels a bit minimal.

Completeness4/5

The calculator covers the core reconstitution math, and the blog tools allow searching and fetching articles. Minor gaps exist, such as no way to list all articles or handle other types of dosing calculations, but the surface is workable for the intended use case.

Available Tools

3 tools
calculate_reconstitutionCalculate peptide reconstitution and syringe unitsAInspect

Given a lyophilized vial size, a volume of bacteriostatic water and a target dose, return the resulting concentration, the volume to draw, and the reading on a U-100 insulin syringe. Use for peptide and compounded GLP-1 dosing arithmetic.

ParametersJSON Schema
NameRequiredDescriptionDefault
dose_mgYesTarget dose, in mg (1 mg = 1000 mcg)
vial_mgYesPeptide in the vial, in mg
bac_water_mlYesBacteriostatic water added, in mL
Behavior3/5

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

With no annotations provided, the description carries the full burden. It discloses the inputs and outputs and mentions the U-100 insulin syringe, adding scope context. However, it does not describe potential error behavior, rounding rules, or the underlying formula, leaving some behavioral aspects implicit for a calculation 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 two sentences, front-loaded with the core calculation statement followed by a brief usage scope. Every sentence adds value without redundancy or fluff.

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?

Despite being a simple tool with no output schema, the description adequately explains the return values (concentration, volume to draw, syringe reading) and usage context. It could be more explicit about units and potential rounding or validation behavior, but overall it is complete enough for the tool's complexity.

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%, with each parameter (vial_mg, bac_water_ml, dose_mg) described in the schema. The description only paraphrases these as 'lyophilized vial size,' 'volume of bacteriostatic water,' and 'target dose,' adding no new semantic detail beyond the schema. Baseline 3 is appropriate.

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 'calculate peptide reconstitution and syringe units' with a specific verb and resource, and enumerates the outputs (concentration, volume to draw, syringe reading). It distinguishes itself from sibling tools (get_article, search_articles) by focusing on arithmetic rather than information retrieval.

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 says 'Use for peptide and compounded GLP-1 dosing arithmetic,' providing clear context for when the tool is appropriate. It does not explicitly state when not to use it or name alternatives, but the sibling tools are clearly unrelated, so the guidance is sufficient for a simple calculator.

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

get_articleGet a Shotlee article as MarkdownAInspect

Fetch the full Markdown source of one article by its slug, as returned by search_articles.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesArticle slug, e.g. "ozempic-and-alcohol"
localeNoen
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'Fetch' which implies a read operation, but it doesn't mention potential errors, authentication, or the role of the locale parameter. The description is minimal and doesn't disclose any edge-case 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?

The description is a single sentence, 17 words, with no filler. It front-loads the action and object, making it immediately clear what the tool does.

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?

For a simple 2-param tool, the description covers the primary parameter (slug) and return format (Markdown). However, it omits any explanation of the locale parameter and possible error cases. Given the absence of an output schema and annotations, this is not fully complete.

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 50%, with locale having no description in the schema. The description clarifies the slug parameter by stating 'by its slug', but it doesn't mention the locale parameter at all. Since the description should compensate for the low schema coverage, this is a gap.

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 the specific verb 'Fetch' and identifies the resource 'full Markdown source of one article' and the method 'by its slug'. It also references search_articles as the source of slugs, which distinguishes it from the 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 Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'as returned by search_articles' provides clear context that this tool consumes slugs from search_articles, implying a workflow order. It doesn't explicitly exclude other tools, but the reference to a sibling tool gives useful guidance on when to use it.

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

search_articlesSearch Shotlee articlesAInspect

Search the English blog corpus by keyword and return matching articles with their titles and canonical URLs. Use to find Shotlee coverage of a drug, peptide, side effect or topic.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYesKeywords, e.g. "ozempic nausea"
Behavior3/5

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

With no annotations provided, the description carries the full burden for behavioral disclosure. It does state the return format (titles and canonical URLs) and the language scope (English). However, it does not disclose optional behavior such as pagination, result ordering, or the default/max limit, leaving some uncertainty about the tool's full 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?

The description is two sentences, front-loaded with the main action, and contains no fluff. It packs essential purpose and usage context into a concise form.

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 simple search tool with two parameters and no output schema, the description covers the main return elements (titles and canonical URLs) and the intended use case. It could be more complete by noting the limit behavior, but given the low complexity, the current level is sufficient for basic 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?

The schema covers only 50% of parameters (only 'query' has a description). The description adds meaning for the 'query' parameter (search by keyword) but fails to mention the 'limit' parameter at all, leaving the agent without details on how to control result count. Given the low schema coverage, the description should have compensated but did not.

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 verb ('Search') with a specific resource ('English blog corpus') and purpose (find coverage of a drug, peptide, side effect or topic). It distinguishes from siblings: calculate_reconstitution is a calculator, get_article retrieves a specific article, while this tool searches across the corpus.

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 tells when to use the tool ('Use to find Shotlee coverage of a drug, peptide, side effect or topic'). It provides clear context for its intended use case but does not mention when not to use it or explicitly name alternatives (e.g., get_article for a specific known article).

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
    -
    quality
    B
    maintenance
    Enables querying US regulated-care providers (GLP-1 clinics) with tools for searching, retrieving details, and checking compliance, using natural language or function calls.
    2
    MIT
  • A
    license
    -
    quality
    F
    maintenance
    Provides comprehensive medical information by querying authoritative sources including FDA drug database, WHO health statistics, PubMed literature, RxNorm nomenclature, Google Scholar, and Australia's PBS API through 22+ specialized tools.
    70
    3
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources