GlossModMCP
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GLOSSMOD_API_KEY | Yes | 你的3DM Mod API密钥 |
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 |
|---|---|
| get_gamesA | |
| get_game_detailA | |
| get_modsA | |
| get_mod_detailA | |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| search_game | 生成游戏搜索提示。 此提示帮助用户搜索特定的游戏并获取相关信息。 参数: - game_name: 要搜索的游戏名称 - detailed: 是否需要详细信息 返回: 优化的游戏搜索提示词 |
| search_mod | 生成 Mod 搜索提示。 此提示帮助用户搜索特定的 Mod 或浏览 Mod 列表。 参数: - mod_query: Mod 搜索关键词 - game_id: 特定游戏的 ID(可选) - filter_by: 筛选方式 ("latest", "trending", "popular") 返回: 优化的 Mod 搜索提示词 |
| list_trending_mods | 生成趋势 Mod 列表提示。 此提示帮助用户查看热门或新发布的 Mod。 参数: - time_range: 时间范围 ("today", "week", "month", "all") - game_id: 特定游戏的 ID(可选) 返回: 优化的趋势列表提示词 |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| games_list_resource | 获取游戏列表资源。 返回热门游戏列表。 |
| latest_mods_resource | 获取最新 Mod 列表资源。 |
TDQS
Scored across 4 tools
Each tool has a distinct purpose: get_games for searching/listing games, get_game_detail for a specific game's details, get_mods for listing mods (requires game_id), and get_mod_detail for mod details. No overlap.
All tool names follow a consistent verb_noun pattern in snake_case (get_games, get_game_detail, get_mods, get_mod_detail). Clear and predictable.
4 tools is well-scoped for a read-only mod database. It covers the essential operations without overloading the surface.
Covers the core workflow of browsing games and mods. The only gap is that mod search requires a game_id, so you cannot directly search mods by name across all games. Otherwise complete for the domain.