docs
Server Details
Search and read the Free Battery Factory docs (LiteShip, batpak) as live MCP tools.
- 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 4.5/5 across 4 of 4 tools scored.
Each tool has a clear, non-overlapping purpose: list_products discovers products, search_docs finds pages, get_doc retrieves a specific page, and get_llms_full returns the full reference. No ambiguity.
All tool names follow a consistent verb_noun pattern in snake_case (list_products, search_docs, get_doc, get_llms_full). Predictable and easy to understand.
With 4 tools, the set is well-scoped for a documentation server. Each tool provides essential functionality without being too many or too few.
The tools cover core documentation workflows: list products, search, fetch single page, and get full reference. A minor gap is lack of a dedicated table-of-contents tool, but search and get_doc compensate well.
Available Tools
4 toolsget_docRead a documentation pageARead-onlyInspect
Fetch a single documentation page as Markdown, given a product id and a page slug (both come from list_products / search_docs results, or a doc URL like /liteship/overview). Returns the title, description, a heading outline, and the full Markdown body.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Page slug, e.g. "overview" or "factory" (from search_docs results or the last path segment of a doc URL). | |
| product | Yes | Product id from list_products (e.g. "liteship", "batpak"). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true, so safety is clear. The description adds behavioral detail by enumerating return fields (title, description, heading outline, full Markdown body) and confirming it's a fetch operation. No destructive or unexpected side effects are implied.
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 that efficiently conveys purpose, parameters, and return value. It is front-loaded with the core action and format, and every clause adds value without redundancy.
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 read tool with full schema coverage, annotations, and no output schema, the description provides all necessary context: what it does, what it returns, and how to derive inputs. There is no missing or ambiguous information.
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 100% with descriptive parameter names. The description supplements by explaining the source of each parameter (e.g., 'from list_products results') and providing URL extraction guidance. This adds meaningful context beyond the schema's own descriptions.
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 verb (fetch), resource (single documentation page), and output format (Markdown). It distinguishes from siblings by specifying that it retrieves a full page given a product and slug, unlike listing or searching. Examples of return fields (title, description, heading outline, body) add specificity.
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 tells the agent that parameters come from list_products or search_docs results, or from a doc URL. This gives clear context for when to use the tool (after identifying a specific page). However, it does not explicitly state when not to use it or compare to siblings beyond mentioning source tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_llms_fullGet a product’s full agent referenceARead-onlyInspect
Return a link to the complete, source-linked agent reference (llms-full.txt) for a product — its entire prose, API surface, and examples in one document. This file is large, so it is returned as a resource link and canonical URL rather than inlined; use search_docs/get_doc for targeted lookups and this when you want the whole corpus.
| Name | Required | Description | Default |
|---|---|---|---|
| product | Yes | Product id from list_products. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so no contradiction. The description adds key behavioral context: the file is large and returned as a resource link/canonical URL rather than inlined. This aids agent understanding of response format.
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?
Two highly concise sentences. The first sentence front-loads the purpose, and the second adds usage guidance and behavioral context. No unnecessary words.
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?
Given the tool's simplicity (one required parameter, no output schema, read-only annotation), the description is fully complete. It covers what the tool does, when to use it, and a key behavioral trait about the response format.
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% for the single parameter 'product'. The description does not add further semantics beyond what the schema provides (product id from list_products). Baseline score of 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 verb 'Return', the resource 'link to the complete, source-linked agent reference', and the scope 'for a product'. It explicitly distinguishes from sibling tools 'search_docs/get_doc' by noting this tool is for 'the whole 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 this tool ('when you want the whole corpus') and provides a clear alternative for targeted lookups ('use search_docs/get_doc'). This helps an agent decide correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_productsList documented productsARead-onlyInspect
List the Free Battery Factory products that have live documentation, each with a one-line blurb, current docs version, and canonical URLs. Call this first to discover the valid product ids used by the other tools.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| products | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=false. The description adds valuable context about the output contents (blurb, version, URLs) and the live documentation constraint. Slightly more detail on potential staleness or caching could elevate it, but currently adds good behavioral insight beyond annotations.
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?
Two sentences: the first lists the action and output fields, the second gives usage order. Every sentence is essential and informative with no redundancy.
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 parameter-less listing tool with an output schema, the description fully covers what the tool does, what it returns, and its role in the tool ecosystem. No gaps identified.
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?
No parameters exist, so the schema fully covers them (100% coverage baseline). The description does not need to elaborate on parameters, and its content about output is sufficient for an agent to understand invocation without further detail.
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 it lists Free Battery Factory products with live documentation, including specific fields (one-line blurb, docs version, canonical URLs). It distinguishes from siblings by positioning itself as the initial discovery tool for product IDs used by other 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?
Explicitly instructs the agent to call this first to discover valid product IDs for other tools, providing clear when-to-use guidance and implying it should precede sibling tools like get_doc or search_docs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_docsSearch the documentationARead-onlyInspect
Full-text search across the product documentation. Returns the best-matching pages with title, description, canonical URL, matched section headings, and a snippet. Omit product to search every product at once, or pass one of the ids from list_products to scope it.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum results to return (default 8, max 25). | |
| query | Yes | Search terms, e.g. "boundary hysteresis" or "deterministic replay". | |
| product | No | Optional product id from list_products to scope the search. Omit to search all products. |
Output Schema
| Name | Required | Description |
|---|---|---|
| results | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=false, so the description does not need to repeat safety. It adds value by specifying the output structure (title, description, URL, headings, snippet) and the scope behavior, which are behavioral traits beyond what annotations provide.
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, immediately stating the function and output, then providing usage guidance. Every sentence is necessary and well-placed, with no filler or repetition of schema details.
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?
The description covers the core functionality, output fields, and parameter usage. It lacks explicit comparison to siblings, but the presence of an output schema and the clear scope handling make it mostly complete. The mention of 'best-matching' implies relevance ranking, which is sufficient.
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 100%, but the description adds meaningful context: for product, it references list_products; for query, it provides example terms. This goes beyond the schema's basic descriptions, helping an agent understand how to use these parameters effectively.
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 it performs full-text search across product documentation and lists the returned fields (title, description, canonical URL, matched section headings, snippet). It does not explicitly distinguish from sibling tools like get_doc or get_llms_full, but the verb and resource are specific, and the scope (single product or all) is clarified.
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 provides explicit guidance on using the product parameter: omit for all-product search or pass an id from list_products to scope. It does not explicitly state when not to use this tool (e.g., vs. get_doc for retrieving a single document), but the context is clear enough for an agent to infer appropriate usage.
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!