Skip to main content
Glama
GlossMod

GlossModMCP

Official
by GlossMod
README.md
# GlossModMCP - 3DM Mod API MCP 服务器

<div align="center">

[![Python](https://img.shields.io/badge/Python-3.11+-blue.svg)](https://www.python.org/)[![MCP](https://img.shields.io/badge/MCP-1.18+-green.svg)](https://modelcontextprotocol.io)[![Status](https://img.shields.io/badge/Status-✅%20Production%20Ready-brightgreen.svg)](#)[![License](https://img.shields.io/badge/License-MIT-blue.svg)](#)

**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