GlossModMCP
Officialby GlossMod
README.md
# GlossModMCP - 3DM Mod API MCP 服务器
<div align="center">
[](https://www.python.org/)[](https://modelcontextprotocol.io)[](#)[](#)
**3DM Mod 站的 MCP 服务器**
</div>
---
## ✨ 项目简介
**GlossModMCP** 是一个完整的 **MCP (Model Context Protocol) 服务器实现**,为 Claude 和其他 LLM 应用提供 3DM Mod 网站的数据访问能力。
## ⚡ 快速开始 (3分钟)
### 前置条件
- Python 3.11+
- [uv](https://github.com/astral-sh/uv)
- [3DM Mod API 密钥](https://mod.3dmgame.com/Workshop/Api)
### 安装
```bash
pip install glossmod-mcp
```
### 更新
```bash
pip install --upgrade glossmod-mcp
```
### 配置
```json
{
"servers": {
"glossmod-mcp": {
"type": "stdio",
"command": "uvx",
"args": ["glossmod-mcp"],
"env": {
"GLOSSMOD_API_KEY": "${input:GLOSSMOD_API_KEY}"
}
}
},
"inputs": [
{
"type": "promptString",
"id": "GLOSSMOD_API_KEY",
"description": "输入你的Mod站 API",
"default": "",
"password": true
}
]
}
```
TDQS
A4.2/5.0
Scored across 4 tools
Disambiguation5/5
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.
Naming Consistency5/5
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.
Tool Count5/5
4 tools is well-scoped for a read-only mod database. It covers the essential operations without overloading the surface.
Completeness4/5
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.
Maintenance
ActivityInactive
ResponsivenessNo issues