social-mcp 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,6 +17,7 @@ An MCP (Model Context Protocol) server that lets AI assistants post and interact
|
|
|
17
17
|
| Reddit | Submit post, get posts, comment, vote, search, get user info |
|
|
18
18
|
| Threads | Get profile, create post, reply, get posts, delete post |
|
|
19
19
|
| TikTok | Query creator info, get user info, post video, photo post, get post status |
|
|
20
|
+
| YouTube | Get channel info, search videos, get video info, list channel videos, get comments, post comment, update video |
|
|
20
21
|
|
|
21
22
|
## Quick Start
|
|
22
23
|
|
|
@@ -64,7 +65,8 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS)
|
|
|
64
65
|
"REDDIT_PASSWORD": "your_password",
|
|
65
66
|
"THREADS_ACCESS_TOKEN": "your_token",
|
|
66
67
|
"THREADS_USER_ID": "your_user_id",
|
|
67
|
-
"TIKTOK_ACCESS_TOKEN": "your_token"
|
|
68
|
+
"TIKTOK_ACCESS_TOKEN": "your_token",
|
|
69
|
+
"YOUTUBE_ACCESS_TOKEN": "your_token"
|
|
68
70
|
}
|
|
69
71
|
}
|
|
70
72
|
}
|
|
@@ -156,6 +158,11 @@ Copy `example.env` to `.env` and fill in the credentials for the platforms you w
|
|
|
156
158
|
|----------|-------------|
|
|
157
159
|
| `TIKTOK_ACCESS_TOKEN` | OAuth 2.0 access token from the [TikTok for Developers](https://developers.tiktok.com) — requires `user.info.basic`, `video.publish`, `video.upload` scopes |
|
|
158
160
|
|
|
161
|
+
### YouTube
|
|
162
|
+
| Variable | Description |
|
|
163
|
+
|----------|-------------|
|
|
164
|
+
| `YOUTUBE_ACCESS_TOKEN` | OAuth 2.0 access token from the [Google Cloud Console](https://console.cloud.google.com) — requires `https://www.googleapis.com/auth/youtube` scope |
|
|
165
|
+
|
|
159
166
|
## Available Tools
|
|
160
167
|
|
|
161
168
|
### Telegram
|
|
@@ -234,6 +241,17 @@ Copy `example.env` to `.env` and fill in the credentials for the platforms you w
|
|
|
234
241
|
|
|
235
242
|
> **Note:** TikTok's Content Posting API requires app approval from [TikTok for Developers](https://developers.tiktok.com). Videos are pulled from a public URL by TikTok's servers rather than uploaded directly.
|
|
236
243
|
|
|
244
|
+
### YouTube
|
|
245
|
+
- **YOUTUBE_GET_CHANNEL_INFO** — Get channel info and stats (`channelId` optional — omit for your own channel)
|
|
246
|
+
- **YOUTUBE_SEARCH_VIDEOS** — Search YouTube for videos (`query`, `maxResults`, `pageToken`)
|
|
247
|
+
- **YOUTUBE_GET_VIDEO_INFO** — Get detailed info and stats for a video (`videoId`)
|
|
248
|
+
- **YOUTUBE_LIST_CHANNEL_VIDEOS** — List recent uploads from a channel (`channelId`, `maxResults`, `pageToken`)
|
|
249
|
+
- **YOUTUBE_GET_COMMENTS** — Get top-level comments on a video (`videoId`, `maxResults`)
|
|
250
|
+
- **YOUTUBE_POST_COMMENT** — Post a comment on a video (`videoId`, `text`)
|
|
251
|
+
- **YOUTUBE_UPDATE_VIDEO** — Update a video's title, description, and tags (`videoId`, `title`, `description`, `tags`, `categoryId`)
|
|
252
|
+
|
|
253
|
+
> **Note:** YouTube requires an OAuth 2.0 access token with the `https://www.googleapis.com/auth/youtube` scope. Enable the **YouTube Data API v3** in your [Google Cloud Console](https://console.cloud.google.com) project. Video uploads are not supported via this API — use the YouTube Studio or resumable upload flow directly.
|
|
254
|
+
|
|
237
255
|
## Development
|
|
238
256
|
|
|
239
257
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "social-mcp",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "MCP server for posting and interacting across social media platforms: Twitter, Instagram, Facebook, WhatsApp, Discord, Telegram, Slack, LinkedIn, Reddit, Threads, and TikTok",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|