Back to MCP directory
publicPublicdnsLocal runtime

hootsuite-mcp-server

Hootsuite的MCP服务器,用于将Hootsuite社交媒体管理平台与GenAI应用程序集成,提供全面的API覆盖、多种身份验证方法和企业级功能。

article

README

🚀 Hootsuite MCP Server

这是一个用于将Hootsuite与生成式AI应用集成的模型上下文协议(MCP)服务器,可助力社交媒体管理。

🚀 快速开始

from hootsuite_mcp import HootsuiteMCPServer

# 初始化服务器
server = HootsuiteMCPServer()

# 启动服务器
server.start()

✨ 主要特性

  • 全面覆盖Hootsuite API
  • 支持多种认证方式
  • 具备速率限制,适用于企业级应用
  • 拥有完整的错误处理和重试逻辑
  • 支持异步操作,提升性能

📦 安装指南

pip install hootsuite-mcp-server

或者从源代码安装:

git clone https://github.com/asklokesh/hootsuite-mcp-server.git
cd hootsuite-mcp-server
pip install -e .

📚 详细文档

创建一个 .env 文件,或根据Hootsuite API要求设置环境变量。

📄 许可证

本项目采用MIT许可证,详情请参阅 LICENSE 文件。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client