Tencent Article Publisher
这是一个基于 MCP (Model Context Protocol) 协议的服务器,专门用于自动化发布文章到腾讯云开发者社区。通过集成 Spring Boot 3.x 和 Spring AI,为 AI 助手提供了与腾讯云开发者社区交互的能力,实现文章的自动发布和管理。
What is Tencent Article Publisher?
Tencent Article Publisher is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to 这是一个基于 mcp (model context protocol) 协议的服务器,专门用于自动化发布文章到腾讯云开发者社区。通过集成 spring boot 3.x 和 spring ai,为 ai 助手提供了与腾讯云开发者社区交互的能力,实现文章的自动发布和管理。
这是一个基于 MCP (Model Context Protocol) 协议的服务器,专门用于自动化发布文章到腾讯云开发者社区。通过集成 Spring Boot 3.x 和 Spring AI,为 AI 助手提供了与腾讯云开发者社区交互的能力,实现文章的自动发布和管理。
This server falls under the Marketing & SEO category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- 这是一个基于 MCP (Model Context Protocol) 协议的服务器,专门用于自动化发布文章到腾讯云开发
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx tencent-send-articleConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use Tencent Article Publisher
Tencent Article Publisher MCP Server is a Spring Boot 3.x and Spring AI-powered Java server that automates publishing articles to the Tencent Cloud Developer Community via the Model Context Protocol, supporting both STDIO and SSE transport modes and integrating directly with AI assistants for one-command article management.
Prerequisites
- JDK 17 or higher installed
- Maven 3.6 or higher installed
- Active Tencent Cloud Developer Community account (https://cloud.tencent.com/developer)
- Browser developer tools to extract your Tencent Cloud session Cookie
- Git to clone the repository
Clone the Repository
Clone the project from GitHub and enter the project directory.
git clone https://github.com/yangbuyiya/tencent-send-article-mcp-server.git
cd tencent-send-article-mcp-serverExtract Your Tencent Cloud Cookie
Log in to https://cloud.tencent.com/developer in your browser. Open the developer tools (F12), switch to the Network tab, refresh the page, click any request, and copy the full Cookie string from the request headers. This cookie is your authentication credential for the MCP server.
Configure Article Parameters in Source Code
Before building, open the source file containing getAddArticleRequest and update the column IDs, category IDs, tag IDs, and cover image URL to match your Tencent Cloud Developer Community column. Publish a test article manually in the browser first to capture the correct parameter values from the Network tab.
// In src/main/java/.../getAddArticleRequest method:
addArticleRequest.setSourceType(1); // 1 = original content
addArticleRequest.setClassifyIds(List.of(3, 4)); // your category IDs
addArticleRequest.setTagIds(List.of(17375)); // your tag IDs
addArticleRequest.setColumnIds(List.of(105380)); // your column ID
addArticleRequest.setOpenComment(1); // enable comments
addArticleRequest.setPic("https://yourimage.png"); // cover image URLBuild the JAR
Compile the project with Maven to produce the executable JAR file.
mvn clean packageConfigure Claude Desktop (STDIO Mode)
Add the server to your Claude Desktop config file. Pass your Tencent Cloud cookie as a command-line argument. STDIO mode is the default and does not require a running web server.
{
"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_full_cookie_string_here"
]
}
}
}Alternative: SSE Mode Configuration
To use SSE transport instead of STDIO, set the Maven profile to 'sse', start the server on port 8633, and point your MCP client at the SSE endpoint. Use this for multi-client scenarios or remote access.
# Start in SSE mode
java -jar target/tencent-send-article-mcp-server-app.jar \
--spring.profiles.active=sse \
--server.port=8633 \
--tencent.api.cookie=your_cookie_hereTencent Article Publisher Examples
Client configuration
Claude Desktop config for the Tencent Article Publisher in STDIO mode, passing credentials as a command-line argument.
{
"mcpServers": {
"tencent-article-publisher": {
"command": "java",
"args": [
"-Dspring.ai.mcp.server.stdio=true",
"-Dfile.encoding=utf-8",
"-jar",
"/Users/yourname/tencent-send-article-mcp-server-app.jar",
"--tencent.api.cookie=your_cookie_string"
]
}
}
}Prompts to try
Instructions to send to Claude once the Tencent Article Publisher MCP server is connected.
- "Publish the following article to Tencent Cloud Developer Community: [title] and [content]."
- "Draft a technical article about Kubernetes pod scheduling and publish it to my column."
- "List the articles I have published recently on Tencent Cloud."
- "Publish this markdown content as an original article with comments enabled."
- "Create and publish a tutorial article about Spring Boot configuration management."Troubleshooting Tencent Article Publisher
The server starts but article publishing returns 401 or authentication errors
Your Tencent Cloud session cookie has expired. Log in to https://cloud.tencent.com/developer again, extract the fresh Cookie from the Network tab in browser devtools, and update the --tencent.api.cookie argument in your MCP config.
Console log output corrupts STDIO communication with the MCP client
In STDIO mode, Spring Boot console logging must be disabled. Check that your application.yml has 'main.banner-mode: off' and that console logging is not set. Switch log output to a file via 'logging.file.name=data/log/app.log'.
mvn clean package fails with Java version errors
The project requires JDK 17 or higher. Run 'java -version' to check your version. If you have multiple JDKs, set JAVA_HOME to point to JDK 17: export JAVA_HOME=$(/usr/libexec/java_home -v 17) on macOS.
Frequently Asked Questions about Tencent Article Publisher
What is Tencent Article Publisher?
Tencent Article Publisher is a Model Context Protocol (MCP) server that 这是一个基于 mcp (model context protocol) 协议的服务器,专门用于自动化发布文章到腾讯云开发者社区。通过集成 spring boot 3.x 和 spring ai,为 ai 助手提供了与腾讯云开发者社区交互的能力,实现文章的自动发布和管理。 It connects AI assistants to external tools and data sources through a standardized interface.
How do I install Tencent Article Publisher?
Follow the installation instructions on the Tencent Article Publisher GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with Tencent Article Publisher?
Tencent Article Publisher works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is Tencent Article Publisher free to use?
Yes, Tencent Article Publisher is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
Tencent Article Publisher Alternatives — Similar Marketing & SEO Servers
Looking for alternatives to Tencent Article Publisher? Here are other popular marketing & seo servers you can use with Claude, Cursor, and VS Code.
TopRank
★ 2.6kGoogle Ads analysis and operations — read performance, manage keywords, bids, and campaigns.
Open SEO
★ 2.1kOpen source alternative to Semrush and Ahrefs
ASO Skills
★ 1.4kAI agent skills for App Store Optimization (ASO) and app marketing. Built for indie developers, app marketers, and growth teams who want Cursor, Claude Code, or any Agent Skills-compatible AI assistant to help with keyword research, metadata optimiza
Google Meta Ads GA4
★ 994MCP server for Google Ads, Meta Ads & GA4 — works with ChatGPT, Claude, Cursor, n8n, Windsurf & more. 250+ tools for campaign management, analytics & optimization.
Meta Ads
★ 923A Model Context Protocol server that allows AI models to access, analyze, and manage Meta advertising campaigns, enabling LLMs to retrieve performance data, visualize ad creatives, and provide strategic insights for Facebook and Instagram platforms.
Google Search Console
★ 882Connects Google Search Console with Claude AI to enable SEO professionals to analyze their SEO data through natural language conversations, providing access to property information, search analytics, URL inspection, and sitemap management.
Browse More Marketing & SEO MCP Servers
Explore all marketing & seo servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up Tencent Article Publisher in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use Tencent Article Publisher?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.