Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_installed_docsetsA

List all installed documentation sets in Dash. An empty list is returned if the user has no docsets installed. Results are automatically truncated if they would exceed 25,000 tokens.

search_documentationA
Search for documentation across docset identifiers and snippets.

Args:
    query: The search query string
    docset_identifiers: Comma-separated list of docset identifiers to search in (from list_installed_docsets)
    search_snippets: Whether to include snippets in search results
    max_results: Maximum number of results to return (1-1000)

Results are automatically truncated if they would exceed 25,000 tokens.
enable_docset_ftsB
Enable full-text search for a specific docset.

Args:
    identifier: The docset identifier (from list_installed_docsets)

Returns:
    True if FTS was successfully enabled, False otherwise
load_documentation_pageA
Load a documentation page from a load_url returned by search_documentation.

Args:
    load_url: The load_url value from a search result (must point to the local Dash API at 127.0.0.1)

Returns:
    The documentation page content as plain text with markdown-style links

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap. enable_docset_fts configures search capabilities, list_installed_docsets enumerates available resources, search_documentation finds content, and load_documentation_page retrieves specific pages. The boundaries between these operations are well-defined and unambiguous.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with clear, descriptive action-object pairs. The naming convention is uniform throughout: enable_docset_fts, list_installed_docsets, load_documentation_page, and search_documentation all maintain the same structure and style.

Tool Count4/5

Four tools is reasonable for a documentation search server, covering core operations of listing, searching, and viewing documentation. While this is a minimal but functional set, it could potentially benefit from additional utilities like docset management or search refinement tools, but the current count is appropriate for the basic scope.

Completeness4/5

The toolset provides complete coverage for the core documentation search workflow: discovering available docsets, enabling search features, searching across documentation, and loading specific pages. The only minor gap is the absence of docset installation/removal tools, but the server appears focused on search operations rather than full docset management.

Maintenance

ActivitySlowing
ResponsivenessUnresponsive