steamDT-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@steamDT-mcpWhat's the current price and 7-day trend for AK-47 | Redline (Field-Tested)?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SteamDT MCP (Flagship Edition)
🚀 全网最全的 CS2 饰品行情、多维技术面与 3D 渲染决策 MCP 服务
📖 项目简介 (Overview)
steamDT-mcp 是针对 CS2(反恐精英 2)饰品交易市场打造的下一代 Model Context Protocol (MCP) 服务端。
它 100% 完整封装了 SteamDT 官方开放平台 的全部 10 大核心 API,并结合本地高性能分词引擎,将数据能力提升至 12 大超级工具。
告别只能查静态报价的简易机器人,赋予你的大模型获取 365 天高精度日 K 线、官方大盘 24H 实时分时走势、以及 免登游戏云端 3D 渲染武器正反面 8K 检视图 的顶尖超能力!
Related MCP server: FinanceKit MCP
✨ 核心特性 (Key Features)
📊 365 天全量 K 线形态:大盘日 K 线与任意单品日 K 线(开/高/低/收/最新价),轻松回溯牛熊周期与支撑位。
📈 官方大盘分时引擎:实时提取大盘点位、日内涨跌幅、以及 24 小时完整分时波动序列。
🔍 云端 3D 高清免进游戏检视:输入检视链接,云端 GPU 直接渲染正/反两面高清特写图,磨损掉漆、模板与印花一览无余。
⚡ 本地全量饰品字典库:自动持久化缓存全网所有 CS2 饰品中英文映射,毫秒级模糊检索、拼音缩写与别名识别(如
usp,ak,沙鹰)。🛡️ 高可用与风控防御:内置 4005 智能限流重试、SSL 容错通道与凭据隔离保护,开箱即用。
🛠 12 大工具全量矩阵 (Tool Catalog)
分类 | 工具名称 (Tool Name) | 官方接口 | 说明与输出能力 |
技术分析 |
|
| 365 天单品日 K 线:开盘、最高、最低、收盘成交价,支持 |
大盘指数 |
|
| 官方大盘实时指数:当前点位、涨跌点数、涨跌%及当日 24 小时逐小时走势 |
大盘形态 |
|
| 365 天大盘日 K 线:回溯市场生命线与多空牛熊周期 |
云端检视 |
|
| 正反面 3D 高清渲染图:基于 |
云端检视 |
|
| 批量 3D 检视图渲染:基于 ASMD 参数免进游戏云端渲染 |
行情报价 |
|
| 单品全平台深度报价:悠悠有品、BUFF、Steam 挂单底价、在售量、求购量 |
批量查价 |
|
| 多饰品批量极速查价:一次调用获取多件持仓最新价格快照 |
均价走势 |
|
| 多周期均价曲线:查询指定饰品 7天 / 30天 / 90天 全网成交均价 |
微观磨损 |
|
| 精确磨损 Float 解析:提取 0.00xxx 磨损、Paint Seed 模板号与贴纸刮损 |
微观磨损 |
|
| ASMD 微观数据解析:通过 ASMD 底层参数解析磨损与印花 |
数据字典 |
|
| 全量基础数据字典:全网饰品数据本地持久化为 |
智能搜索 |
| 本地分词匹配引擎 | 中英模糊混合检索:输入中文、拼音或别名即可自动匹配标准英文 HashName |
🏗 架构工作流 (Architecture)
flowchart TD
User([用户/投资者]) <--> Agent[AI Agent (Claude / Codex / Cursor / Antigravity)]
Agent <-->|MCP Protocol (stdio)| Server[SteamDT MCP Flagship Server]
subgraph Local Engine [本地高性能引擎]
Cache[(steam_items_base.json\n全量字典缓存)]
Search[智能分词 & 别名匹配引擎]
end
subgraph SteamDT Cloud [SteamDT OpenAPI 开放平台]
API_Price[实时价格 & 批量均价]
API_Kline[大盘/单品 365天 K线集群]
API_Wear[磨损解析 & ASMD 解码]
API_Inspect[GPU 云端 3D 正反面检视渲染]
end
Server <--> Local Engine
Server <-->|HTTPS Bearer Auth| SteamDT Cloud⚡ 快速开始 (Quick Start)
1. 克隆与安装依赖
git clone https://github.com/Kairo-WU/steamDT-mcp.git
cd steamDT-mcp
pip install -r requirements.txt2. 配置环境变量
复制 .env.example 为 .env 并填入你的 SteamDT API 密钥:
cp .env.example .env编辑 .env:
STEAMDT_API_KEY=你的SteamDT开放平台API密钥
STEAMDT_BASE_URL=https://open.steamdt.com💡 提示:API 密钥可在 SteamDT 开放平台 免费申请获取。
3. 本地全量测试
运行内置的端到端自动化测试脚本:
python test_steamdt_mcp.py🔌 各客户端集成配置 (Client Configurations)
1. Claude Desktop
在 claude_desktop_config.json 中添加:
{
"mcpServers": {
"steamdt": {
"command": "python",
"args": ["F:/MCP-Management/steamdt/server.py"],
"env": {
"STEAMDT_API_KEY": "你的API_KEY",
"STEAMDT_BASE_URL": "https://open.steamdt.com"
}
}
}
}2. OpenAI Codex / Cursor
在 config.toml 或 .cursor/mcp.json 中添加:
[mcp_servers.steamdt]
type = "stdio"
command = "python"
args = ["F:/MCP-Management/steamdt/server.py"]
[mcp_servers.steamdt.env]
STEAMDT_API_KEY = "你的API_KEY"
STEAMDT_BASE_URL = "https://open.steamdt.com"3. Antigravity / Gemini CLI (mcp_config.json)
{
"mcpServers": {
"steamdt": {
"command": "python",
"args": ["F:/MCP-Management/steamdt/server.py"],
"env": {
"STEAMDT_API_KEY": "你的API_KEY"
}
}
}
}💬 典型调用示例 (Example Prompts)
配置完成后,你可以直接对你的 AI 助手说:
🗣️ 查 K 线:“帮我调出 USP 印花集过去一年的日 K 线,分析它现在的价格支撑区间。”
🗣️ 大盘复盘:“查看今天大盘的实时指数和 24 小时分时走势,判断当前是放量还是缩量。”
🗣️ 免进游戏验货:“这是我的淬火检视链接
steam://...,帮我渲染正反面高清检视图,并查一下磨损度。”🗣️ 快速匹配:“帮我查一下‘二号玩家’和‘冲出重围’对应的官方标准英文 HashName。”
📄 开源许可证 (License)
本项目遵循 MIT License 开源协议。欢迎提交 PR、Issue 以及 Star ⭐️ 支持!
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Pre-computed market data that improves agent reasoning, reduces token usage, and replaces pipelines.
Read-only China A-share data for AI agents: market, limit-up, capital flow and disclosures.
Discover, inspect and run 63,000+ agent tools from one balance. Pay per call, no subscriptions.
1Live Steam market data for AI agents: top sellers, deals, player counts. Paid per call via x402.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables real-time stock market analysis through AKShare API integration. Supports retrieving live stock prices, historical data, technical indicators (MA, MACD, RSI), market sentiment analysis, stock search, and financial news.5-
- AlicenseAqualityCmaintenanceProvides AI agents with real-time financial market intelligence including stock quotes, crypto data, technical analysis, and portfolio insights. Enables natural language queries for current prices, technical indicators, asset comparisons, and portfolio analysis.176MIT
- FlicenseNot gradedqualityDmaintenanceEnables querying Steam item prices, wear, and price history via the SteamDT API, allowing AI assistants to retrieve and analyze Steam marketplace data.13-
- AlicenseAqualityDmaintenanceEnables AI assistants to query CS2 item real-time prices, K-line data, market index, wear, and inspect images via the SteamDT API.132MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kairo-WU/steamDT-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server