腾讯云开发者社区 MCP 服务器 - 基于 Spring Boot 的 MCP 服务实现,专门用于与腾讯云开发者社区进行交互,支持发布文章等功能
{
"mcpServers": {
"tencent-add-article-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
腾讯云开发者社区 MCP 服务器 - 基于 Spring Boot 的 MCP 服务实现,专门用于与腾讯云开发者社区进行交互,支持发布文章等功能
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 255 days ago. 1 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Tencent Add 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 的 MCP 服务实现,专门用于与腾讯云开发者社区进行交互。该项目提供了发布文章到腾讯云开发者社区的功能,支持 Markdown 格式的内容转换和自动发布。
tencent-add-article-mcp-server/
├── src/main/java/com/viper31/tecent/mcp/server/
│ ├── TencentAddArticleMcpServerApplication.java # 主启动类
│ ├── api/ # API 接口层
│ │ ├── ITencentService.java # 腾讯云服务接口
│ │ ├── dto/ # 数据传输对象
│ │ │ ├── AddArticleRequest.java # 发布文章请求
│ │ │ └── AddArticleResponse.java # 发布文章响应
│ │ └── config/ # 配置类
│ └── mcp/ # MCP 服务层
│ ├── TencentArticleService.java # 文章服务实现
│ ├── dto/ # MCP 数据传输对象
│ ├── config/ # MCP 配置
│ └── utils/ # 工具类
│ └── MarkdownToProseMirrorConverter.java # Markdown 转换器
├── src/main/resources/
│ └── application.yml # 应用配置文件
├── pom.xml # Maven 配置
└── README.md # 项目文档
克隆项目
git clone https://github.com/Viper31-one/tencent-add-article-mcp-server.git
cd tencent-add-article-mcp-server
配置认证信息
⚠️ 重要: 请选择以下任一方式配置你的腾讯云开发者社区 Cookie,不要直接在代码中硬编码敏感信息:
方式一:使用本地配置文件(推荐)
# 复制配置文件模板
cp application-local.yml src/main/resources/application-local.yml
# 编辑配置文件,填入你的Cookie
方式二:使用环境变量
export TENCENT_API_COOKIE="你的腾讯云开发者社区Cookie"
方式三:使用系统属性
mvn spring-boot:run -Dtencent.api.cookie="你的Cookie"
编译项目
mvn clean compile
运行服务
mvn spring-boot:run
Cookie 值为了确保敏感信息的安全性,项目采用了以下安全措施:
application-local.yml 不会被提交到 Git.gitignore推荐配置方式:
application-local.yml 本地配置文件(最安全)addArticle - 发布文章到腾讯云开发者社区描述: 将 Markdown 格式的文章发布到腾讯云开发者社区
参数:
title (string, 必需): 文章标题markdownContent (string, 必需): Markdown 格式的文章内容userSummary (string, 必需): 文章摘要返回值:
{
"status": 0,
"articleId": 123456,
"url": "https://cloud.tencent.com/developer/article/123456",
"msg": "发布成功"
}
状态码说明:
0: 发布成功-1: 发布失败# 使用 MCP 客户端调用
result = mcp_client.call_tool("addArticle", {
"title": "我的技术文章",
"markdownContent": "# 标题\n\n这是文章内容...",
"userSummary": "这是一篇关于技术的文章"
})
curl -X POST http://localhost:8080/mcp/addArti
... [View full README on GitHub](https://github.com/Viper31-one/tencent-add-article-mcp-server#readme)