- Home
- MCP servers
- MEXC Announcements
MEXC Announcements
- javascript
0
GitHub Stars
javascript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"kukapay-mexc-announcements-mcp": {
"command": "node",
"args": [
"/path/to/mexc-announcements-mcp/index.js"
]
}
}
}This MCP server streams real-time, structured MEXC exchange announcements to AI agents. It delivers clean data with full links and ISO timestamps, so your agents can stay informed and react quickly to market-moving news.
How to use
To use this server with an MCP client, ensure the client can connect via a local stdio channel. Run the MCP server alongside your AI agent setup so the client can request announcements and receive consistently structured results. You will interact with the available tools to fetch latest announcements, new listings, or delistings as needed.
You can request the three high-signal capabilities to your agent prompts. The server returns arrays of objects with titles, links, and published times, enabling you to present timely summaries, build dashboards, or trigger workflows when specific announcements occur.
How to install
Prerequisites: Node.js 18 or newer, and an active internet connection.
-
Install dependencies is handled by the runtime package manager. Ensure you have a working Node.js environment.
-
Configure your MCP client to connect to the local MCP server by providing the stdio command and path used to start the server.
{
"mcpServers": {
"MEXC Announcements": {
"command": "node",
"args": ["/path/to/mexc-announcements-mcp/index.js"]
}
}
}
Configuration and notes
The MCP server is configured as a stdio endpoint that starts with the node runtime and the index script in your installation path. Replace "/path/to/mexc-announcements-mcp/index.js" with the actual location where you installed the server.
Available tools
get_latest
Returns all recent MEXC announcements from every category, newest first.
get_new_listings
Returns every new token/coin listing announcement, newest first.
get_delistings
Returns every delisting announcement, newest first.