RegistryTools
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| REGISTRYTOOLS_DEVICE | No | Embedding 模型计算设备 | cpu |
| REGISTRYTOOLS_DATA_PATH | No | 数据目录路径 | ~/.RegistryTools |
| REGISTRYTOOLS_LOG_LEVEL | No | 日志级别 | INFO |
| REGISTRYTOOLS_TRANSPORT | No | 传输协议 | stdio |
| REGISTRYTOOLS_DESCRIPTION | No | MCP 服务器描述 | 统一的 MCP 工具注册与搜索服务 |
| REGISTRYTOOLS_ENABLE_AUTH | No | 启用 API Key 认证 | false |
| REGISTRYTOOLS_SEARCH_METHOD | No | 默认搜索方法 | bm25 |
| REGISTRYTOOLS_STORAGE_BACKEND | No | 存储后端类型 | json |
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": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_toolsB | 搜索可用的 MCP 工具 根据查询字符串在已注册的工具中搜索匹配项。 |
| get_tool_definitionA | 获取指定工具的完整定义 返回工具的完整元数据,包括输入输出 Schema。 |
| list_tools_by_categoryB | 按类别列出工具 列出指定类别下的所有工具。 |
| register_toolB | 动态注册新工具 向工具注册表中添加一个新的工具元数据。 |
| unregister_toolA | 注销工具 从工具注册表中移除指定的工具。 |
| search_hot_toolsA | 快速搜索热工具(性能优化) 仅搜索热工具和温工具,跳过冷工具以提升搜索性能。 热工具是高频使用的工具,温工具是中等频率使用的工具。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| get_stats | 获取工具注册表统计信息 Returns: 统计信息,JSON 格式字符串 Raises: PermissionError: 如果认证失败(仅 HTTP 模式) |
| get_categories | 获取所有工具类别 Returns: 类别列表,JSON 格式字符串 Raises: PermissionError: 如果认证失败(仅 HTTP 模式) |
TDQS
Scored across 6 tools
Most tools have distinct purposes, but search_tools and search_hot_tools overlap significantly. An agent could easily choose the wrong one, especially since search_hot_tools only searches a subset of tools.
All tool names follow a consistent verb_noun pattern (get_, search_, list_, register_, unregister_). The two search tools are clearly named with a descriptive modifier, maintaining predictable structure.
With 6 tools, the server is well-scoped for a tool registry. Each tool covers a core registry operation without unnecessary bloat or missing essentials.
The registry covers basic CRUD (register, get, unregister) and search/list capabilities, but there is no update tool and no way to list all tools without filtering by category. This leaves notable gaps for managing and exploring the full registry.