Shotlee
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.
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.
Tool Definition Quality
Average 3.8/5 across 3 of 3 tools scored.
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.
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.
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.
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 toolscalculate_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.
| Name | Required | Description | Default |
|---|---|---|---|
| dose_mg | Yes | Target dose, in mg (1 mg = 1000 mcg) | |
| vial_mg | Yes | Peptide in the vial, in mg | |
| bac_water_ml | Yes | Bacteriostatic water added, in mL |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Article slug, e.g. "ozempic-and-alcohol" | |
| locale | No | en |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | Keywords, e.g. "ozempic nausea" |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityCmaintenanceEnables searching and comparing GLP-1 medication providers, medications, side effects, and FAQs across a directory of 18,344 US clinics, telehealth programs, and pharmacies.64MIT

Hormonaly MCP Serverofficial
Flicense-qualityBmaintenanceEnables AI agents to access 24 clinical tools for evidence synthesis, protocol lookup, and decision support in peptide, hormone, and longevity medicine.2- Alicense-qualityBmaintenanceEnables querying US regulated-care providers (GLP-1 clinics) with tools for searching, retrieving details, and checking compliance, using natural language or function calls.2MIT
- Alicense-qualityFmaintenanceProvides 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.703MIT