MEXC公告MCP
一个MCP服务器,向AI代理流式传输实时、结构化的MEXC交换公告。
 ](https://nodejs.org/)
特性
- 三个专注的高信号工具
- 返回具有完整链接和ISO时间戳的干净结构化数据
安装
先决条件:
- Node.js≥18
- 互联网接入
- 克隆存储库:
git clone https://github.com/kukapay/mexc-announcements-mcp.git
cd mexc-announcements-mcp- 再进行:
npm install- 配置MCP客户端:
要将此服务器与Claude Desktop等MCP客户端一起使用,请将以下内容添加到您的配置文件(或等效文件)中:
{
"mcpServers": {
"MEXC Announcements": {
"command": "node",
"args": ["/path/to/mexc-announcements-mcp/index.js"]
}
}
} 替换 /path/to/mexc-announcements-mcp 使用您的实际安装路径。
可用工具
get_latest
退货 所有最近的MEXC公告 从每个类别中,先排序最新的。
示例提示:
“显示MEXC最近的10个公告”
输出:
[
{
"title": "MEXC Will List XYZ (XYZ) in Innovation Zone",
"link": "https://www.mexc.com/announcements/123456",
"published_at": "2025-12-09T10:30:00.000Z"
},
{
"title": "Delisting of ABC/USDT Trading Pair",
"link": "https://www.mexc.com/announcements/123457",
"published_at": "2025-12-08T14:15:00.000Z"
}
]get_new_listings
退货 每一个新的代币/硬币上市公告 首次在MEXC上发表。
示例提示:
“本周在墨西哥商品交易所上市的最新代币是什么?”
输出:
[
{
"title": "MEXC Will List SuperToken (STK) – Trading Starts Dec 10",
"link": "https://www.mexc.com/announcements/new-listings/98765",
"published_at": "2025-12-09T08:00:00.000Z"
},
{
"title": "New Listing: QuantumPad (QPAD) in Assessment Zone",
"link": "https://www.mexc.com/announcements/new-listings/98764",
"published_at": "2025-12-08T12:00:00.000Z"
}
]get_delistings
退货 每份退市公告,最新第一。
示例提示:
“在过去的7天里,日本文部科学省有没有摘牌?”
输出:
[
{
"title": "Delisting of OLDCOIN (OLD) – Trading Ends Dec 15",
"link": "https://www.mexc.com/announcements/delistings/54321",
"published_at": "2025-12-09T06:00:00.000Z"
}
]许可证
麻省理工学院©2025-随意使用、修改和重新分发。
