tencent-send-article-mcp-server

yangbuyiya/tencent-send-article-mcp-server

3.4

If you are the rightful owner of tencent-send-article-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

This project is a Model Context Protocol (MCP) server designed for automating article publication to Tencent Cloud Developer Community.

The Tencent Send Article MCP Server is a specialized server built on the Model Context Protocol (MCP) to facilitate the automated publication of articles to the Tencent Cloud Developer Community. By integrating Spring Boot 3.x and Spring AI, this server provides AI assistants with the capability to interact with the Tencent Cloud Developer Community, enabling seamless article publishing and management. The server supports both STDIO and SSE modes for communication, allowing flexibility in deployment and usage. It is designed to work with Java 17 and utilizes Maven for building and managing dependencies. The server also incorporates HTTP client support through Retrofit2 and JSON processing with FastJSON and Jackson, ensuring robust and efficient data handling. This project is ideal for developers looking to automate content management tasks within the Tencent Cloud ecosystem.

Features

  • Integration with Spring Boot 3.x and Spring AI for enhanced AI capabilities.
  • Supports both STDIO and SSE communication modes for flexible deployment.
  • Utilizes Retrofit2 for HTTP client operations and FastJSON/Jackson for JSON processing.
  • Automates article publication to Tencent Cloud Developer Community.
  • Configurable through environment variables and command-line parameters for ease of use.

Usages

usage with stdio

{
  "mcpServers": {
    "tencent-article-publisher": {
      "command": "java",
      "args": [
        "-Dspring.ai.mcp.server.stdio=true",
        "-Dfile.encoding=utf-8",
        "-jar",
        "/path/to/tencent-send-article-mcp-server-app.jar",
        "--tencent.api.cookie=your_cookie_here"
      ]
    }
  }
}

usage with sse

yaml
{
  "mcpServers": {
    "tencent-send-article-mcp-server": {
      "baseUrl": "http://127.0.0.1:8633/sse"
    }
  }
}

usage with docker

shell
docker run -d --name tencent-send-article-mcp-server \
-p 8635:8633 \
-e TENCENT_API_COOKIE="你在腾讯云开发者社区获取的Cookie" \
registry.cn-hangzhou.aliyuncs.com/yangbuyiya/tencent-send-article-mcp-server-app:1.0.0