npm qpost-mcpstreamable-httpMITupdated 15d ago
MCP server for QPost — lets AI agents schedule and publish video/image posts to YouTube, TikTok, and Instagram through QPost's REST API.
qpost mcp 能做什么?
qpost-mcp
MCP server for QPost — lets AI agents schedule and publish video/image posts to YouTube, TikTok, and Instagram through QPost's REST API.
Install
Generate an API key from your QPost dashboard (Settings → API Keys), then pick one of the two options below.
Hosted (recommended — nothing to install)
QPost runs the same server at https://qpost.dev/mcp over Streamable HTTP:
claude mcp add --transport http qpost https://qpost.dev/mcp \
--header "x-api-key: YOUR_API_KEY"
Any MCP client that speaks Streamable HTTP can point at that URL with an
x-api-key (or Authorization: Bearer) header. The endpoint is stateless, so
there is no session to manage.
Local (stdio) via npx
Use this if you self-host QPost or would rather run the server yourself:
claude mcp add qpost -e QPOST_API_KEY=your_key_here -- npx -y qpost-mcp
Claude Desktop / other MCP clients
{
"mcpServers": {
"qpost": {
"command": "npx",
"args": ["-y", "qpost-mcp"],
"env": {
"QPOST_API_KEY": "your_key_here"
}
}
}
}
Set QPOST_BASE_URL too if you're self-hosting QPost (defaults to https://qpost.dev).
Tools
| Tool | Description |
|---|---|
list_connected_accounts |
List connected YouTube/TikTok/Instagram accounts and their status |
create_post |
Create and publish (or schedule) a post, with video or image media from a URL or local path |
list_posts |
List posts, optionally filtered by status/platform |
get_post |
Get a single post by ID |
update_post |
Update a post's caption/schedule/timezone/status |
delete_post |
Delete a post |
retry_post |
Retry a failed post |
Media handling differs by transport
The local stdio server can read files from your machine, so create_post
accepts mediaPath as well as mediaUrl. The hosted endpoint obviously
cannot reach your disk — it takes mediaUrl/imageUrls, or mediaBase64
with an optional mediaFilename to set the MIME type.
Full request/response shapes and per-platform metadata options (YouTube category/privacy, TikTok privacy level, Instagram media type, etc.) are documented at qpost.dev/docs — this server is a thin wrapper over that same REST API.
Local development
npm install
npm run dev # runs src/index.ts directly via tsx
npm run build # compiles to dist/
License
MIT
安装
把 qpost mcp 添加到你的客户端。选择你正在使用的那个。
{
"servers": {
"qpost-mcp": {
"type": "http",
"url": "https://qpost.dev/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add qpost-mcp -- npx -y qpost-mcpcodex mcp add qpost-mcp -- npx -y qpost-mcpamp mcp add qpost-mcp -- npx -y qpost-mcp{
"mcpServers": {
"qpost-mcp": {
"command": "npx",
"args": [
"-y",
"qpost-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"qpost-mcp": {
"command": "npx",
"args": [
"-y",
"qpost-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"qpost-mcp": {
"command": "npx",
"args": [
"-y",
"qpost-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"qpost-mcp": {
"command": "npx",
"args": [
"-y",
"qpost-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"qpost-mcp": {
"command": "npx",
"args": [
"-y",
"qpost-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"qpost-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"qpost-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"qpost-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"qpost-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y qpost-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
7 个工具
qpost mcp 向已连接的智能体提供 7 个工具。
- list_connected_accounts
- List connected YouTube/TikTok/Instagram accounts and their status
- create_post
- Create and publish (or schedule) a post, with video or image media from a URL or local path
- list_posts
- List posts, optionally filtered by status/platform
- get_post
- Get a single post by ID
- update_post
- Update a post's caption/schedule/timezone/status
- delete_post
- Delete a post
- retry_post
- Retry a failed post
评分
81 / 100
优秀
- 文档22/25
- 维护25/25
- 可信度13/20
- 能力6/15
- 安装体验15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 8 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 7 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 0.3.0最新 | 2026年8月25日 |
| 0.2.0 | 2026年8月3日 |
| 0.1.0 | 2026年8月3日 |