这是一个基于 MCP (Model Context Protocol) 协议的服务器,专门用于自动化发布文章到腾讯云开发者社区。通过集成 Spring Boot 3.x 和 Spring AI,为 AI 助手提供了与腾讯云开发者社区交互的能力,实现文章的自动发布和管理。
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"tencent-send-article-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
这是一个基于 MCP (Model Context Protocol) 协议的服务器,专门用于自动化发布文章到腾讯云开发者社区。通过集成 Spring Boot 3.x 和 Spring AI,为 AI 助手提供了与腾讯云开发者社区交互的能力,实现文章的自动发布和管理。
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in writing / communication
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP server for Kaseya Autotask PSA — 39 tools for companies, tickets, projects, time entries, and more
Email & SMS infrastructure for AI agents — send and receive real email and text messages programmatically
MCP Security Weekly
Get CVE alerts and security updates for Tencent Send Article Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
这是一个基于 MCP (Model Context Protocol) 协议的服务器,专门用于自动化发布文章到腾讯云开发者社区。通过集成 Spring Boot 3.x 和 Spring AI,为 AI 助手提供了与腾讯云开发者社区交互的能力,实现文章的自动发布和管理。
git clone https://github.com/yangbuyiya/tencent-send-article-mcp-server.git
cd tencent-send-article-mcp-server
获取腾讯云 Cookie
配置认证信息
# 方式一:环境变量
export TENCENT_API_COOKIE="your_cookie_here"
# 方式二:命令行参数
java -jar target/tencent-send-article-mcp-server-app.jar --tencent.api.cookie="your_cookie_here"
前往 getAddArticleRequest 方法中修改文章部分请求参数
具体参数前往 登录 腾讯云开发者社区
打开开发者工具, 发布一个测试文章选好你要发布的专栏等数据
找到 addArticle 请求复制出来, 将请求参数下面当中的参数替换即可
// 只允许修改下面的参数
addArticleRequest.setSourceType(1); // 设置为原创
addArticleRequest.setClassifyIds(List.of(3,4)); // 设置文章分类
addArticleRequest.setTagIds(List.of(17375)); // 设置文章标签
addArticleRequest.setLongtailTag(List.of("面试","面试题","趣味面试")); // 设置长尾标签
addArticleRequest.setColumnIds(List.of(105380)); // 设置专栏ID
addArticleRequest.setOpenComment(1); // 开启评论
addArticleRequest.setCloseTextLink(1); // 允许文本链接
addArticleRequest.setPic("https://foruda.gitee.com/images/1748188287230778527/9289646d_5151444.png"); // 设置封面图片
addArticleRequest.setSourceDetail(new HashMap<>()); // 设置来源详情
addArticleRequest.setZoneName(""); // 设置专区名称
# 编译项目
mvn clean package
在您的 MCP 客户端配置文件中添加以下配置:
{
"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"
... [View full README on GitHub](https://github.com/yangbuyiya/tencent-send-article-mcp-server#readme)