chemany/toutiao_mcp_server
If you are the rightful owner of toutiao_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.
A comprehensive MCP server for managing and publishing content on platforms like 今日头条, with compatibility for 小红书 data formats.
The 今日头条 MCP server is a robust content management and publishing platform designed to streamline the process of content creation, publication, and analysis on 今日头条. It offers seamless integration with 小红书, allowing users to publish content across multiple platforms with ease. The server supports automatic login, content publishing, and data analysis, making it an ideal tool for content creators and marketers looking to optimize their workflow. Built on the FastMCP framework, it provides a modern architecture with support for HTTP Streamable mode, ensuring efficient and scalable operations. The server is equipped with features like user authentication management, content management, and multi-platform compatibility, making it a versatile solution for managing digital content.
Features
- User Authentication Management: Automatic login, cookie persistence, and login status checks.
- Content Publishing: Supports publishing articles, micro-posts, and image uploads with compression.
- Data Analysis: Provides insights into reading statistics, follower growth, and content performance.
- Content Management: Allows retrieval, editing, and deletion of articles, along with status management.
- Multi-Platform Compatibility: Fully compatible with 小红书 auto-publishing tools, enabling one-click multi-platform publishing.
Usages
usage with local development
python mcp.run(transport='stdio') # Tools defined via @mcp.tool() decorator
usage with remote deployment
python mcp.run(transport='sse', host="0.0.0.0", port=8000) # Specify SSE endpoint
usage with fastmcp framework
python from mcp.server import FastMCP app = FastMCP('demo') @app.tool() async def query(): ...