Skip to main content
Glama
lmolina

Bluetooth Specifications MCP Server

by lmolina

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MCP_HOSTNoHost for HTTP mode (default: 127.0.0.1)127.0.0.1
MCP_PORTNoPort for HTTP mode (default: 8000)8000
MCP_TRANSPORTNoTransport mode: 'stdio' (default) or 'streamable-http'stdio
BTMCP_CACHE_DIRNoCustom cache directory (default: <project>/.cache/)

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
search_specificationsA

Search Bluetooth specifications.

:param query: Search query string :type query: str :param mode: Search mode - "bm25" (keyword), "semantic" (meaning), or "hybrid" (both, default) :type mode: str :param top_k: Number of results to return (default: 3) :type top_k: int :param filter_pdfs: Comma-separated list of PDF names to filter by (e.g., "doc1.pdf,doc2.pdf") :type filter_pdfs: str :return: Formatted search results with citations :rtype: str :raises ValueError: If mode is not one of "bm25", "semantic", or "hybrid"

refresh_indexA

Rebuild the specification index from PDFs.

Use this when PDF files have been added, removed, or updated.

:return: Status message with index statistics :rtype: str :raises ValueError: If specs_dir is not set :raises FileNotFoundError: If PDF file does not exist

list_indexed_specsA

List all indexed PDF specifications with statistics.

Shows per-PDF information including number of pages and chunks indexed.

:return: Formatted list of indexed specifications :rtype: str

check_index_statusA

Check index and cache status.

Shows whether cache is fresh and which PDFs need reindexing.

:return: Formatted status information :rtype: str

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.2/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a distinct purpose: checking cache status, listing indexed specs, rebuilding the index, and searching. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case, making the naming predictable and easy to understand.

Tool Count5/5

Four tools is an appropriate number for a server focused on maintaining and querying a specification index—neither too few nor too many.

Completeness4/5

Covers the core operations: check status, list specs, refresh index, and search. Missing a direct way to add or remove individual PDFs, but the refresh tool handles bulk updates.

Maintenance

ActivityInactive
ResponsivenessNo issues