Bluetooth Specifications MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MCP_HOST | No | Host for HTTP mode (default: 127.0.0.1) | 127.0.0.1 |
| MCP_PORT | No | Port for HTTP mode (default: 8000) | 8000 |
| MCP_TRANSPORT | No | Transport mode: 'stdio' (default) or 'streamable-http' | stdio |
| BTMCP_CACHE_DIR | No | Custom 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
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| 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
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
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.
All tools follow a consistent verb_noun pattern in snake_case, making the naming predictable and easy to understand.
Four tools is an appropriate number for a server focused on maintaining and querying a specification index—neither too few nor too many.
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.