com.freebatteryfactory/docs
Official4 toolsSearch and read the Free Battery Factory docs (LiteShip, batpak) as live MCP tools.
Search and retrieve Free Battery Factory documentation live.
Captured live from the server via tools/list.
list_products
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.
No parameters.
search_docs
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.
Parameters (3)
- querystringrequired
Search terms, e.g. "boundary hysteresis" or "deterministic replay".
- productstring
Optional product id from list_products to scope the search. Omit to search all products.
- limitinteger
Maximum results to return (default 8, max 25).
get_doc
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.
Parameters (2)
- productstringrequired
Product id from list_products (e.g. "liteship", "batpak").
- slugstringrequired
Page slug, e.g. "overview" or "factory" (from search_docs results or the last path segment of a doc URL).
get_llms_full
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.
Parameters (1)
- productstringrequired
Product id from list_products.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"docs": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://freebatteryfactory.com/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.