postfast-mcp 0.1.0 → 0.1.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/.claude-plugin/marketplace.json +21 -0
- package/.claude-plugin/plugin.json +22 -0
- package/README.md +37 -7
- package/package.json +2 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
|
|
3
|
+
"name": "postfast-mcp",
|
|
4
|
+
"description": "PostFast social media scheduling and management tools for Claude Code",
|
|
5
|
+
"owner": {
|
|
6
|
+
"name": "PostFast",
|
|
7
|
+
"email": "me@peturgeorgievv.com"
|
|
8
|
+
},
|
|
9
|
+
"plugins": [
|
|
10
|
+
{
|
|
11
|
+
"name": "postfast",
|
|
12
|
+
"description": "Schedule and manage social media posts via PostFast. Supports Facebook, Instagram, X, TikTok, LinkedIn, YouTube, BlueSky, Threads, Pinterest, and Telegram.",
|
|
13
|
+
"category": "productivity",
|
|
14
|
+
"homepage": "https://postfa.st",
|
|
15
|
+
"source": {
|
|
16
|
+
"source": "npm",
|
|
17
|
+
"package": "postfast-mcp"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "postfast",
|
|
3
|
+
"description": "Schedule and manage social media posts via PostFast. Supports Facebook, Instagram, X, TikTok, LinkedIn, YouTube, BlueSky, Threads, Pinterest, and Telegram.",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "PostFast",
|
|
7
|
+
"email": "me@peturgeorgievv.com"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://postfa.st",
|
|
10
|
+
"repository": "https://github.com/peturgeorgievv-factory/postfast-mcp",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"keywords": ["social-media", "scheduling", "mcp", "postfast"],
|
|
13
|
+
"mcpServers": {
|
|
14
|
+
"postfast": {
|
|
15
|
+
"command": "npx",
|
|
16
|
+
"args": ["-y", "postfast-mcp"],
|
|
17
|
+
"env": {
|
|
18
|
+
"POSTFAST_API_KEY": ""
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
package/README.md
CHANGED
|
@@ -2,15 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
MCP server for the [PostFast](https://postfa.st) API — schedule and manage social media posts via AI tools like Claude.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Quick Start
|
|
6
6
|
|
|
7
7
|
### 1. Get your API key
|
|
8
8
|
|
|
9
9
|
Go to **PostFast → Workspace Settings → API Key** and generate a key.
|
|
10
10
|
|
|
11
|
-
### 2.
|
|
11
|
+
### 2. Install
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
**Option A — Claude Code Plugin (recommended):**
|
|
14
|
+
|
|
15
|
+
```shell
|
|
16
|
+
/plugin marketplace add peturgeorgievv-factory/postfast-mcp
|
|
17
|
+
/plugin install postfast@postfast-mcp
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Then set your API key as an environment variable:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
export POSTFAST_API_KEY="your-api-key-here"
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
**Option B — Manual `.mcp.json` config:**
|
|
27
|
+
|
|
28
|
+
Add to your project's `.mcp.json` or `~/.claude/.mcp.json` (global):
|
|
14
29
|
|
|
15
30
|
```json
|
|
16
31
|
{
|
|
@@ -18,7 +33,7 @@ Add to your `.mcp.json` (project) or `~/.claude.json` (global):
|
|
|
18
33
|
"postfast": {
|
|
19
34
|
"type": "stdio",
|
|
20
35
|
"command": "npx",
|
|
21
|
-
"args": ["postfast-mcp"],
|
|
36
|
+
"args": ["-y", "postfast-mcp"],
|
|
22
37
|
"env": {
|
|
23
38
|
"POSTFAST_API_KEY": "your-api-key-here"
|
|
24
39
|
}
|
|
@@ -35,25 +50,40 @@ Ask Claude things like:
|
|
|
35
50
|
- "Schedule a post to Instagram for tomorrow at 9am"
|
|
36
51
|
- "Show me all scheduled posts for this week"
|
|
37
52
|
- "Upload this image and create a LinkedIn post with it"
|
|
53
|
+
- "Create a Facebook reel with this video"
|
|
38
54
|
|
|
39
55
|
## Available Tools
|
|
40
56
|
|
|
41
57
|
| Tool | Description |
|
|
42
58
|
|------|-------------|
|
|
59
|
+
| `list_accounts` | List connected social media accounts |
|
|
43
60
|
| `list_posts` | List posts with filters (platform, status, date range) |
|
|
44
61
|
| `create_posts` | Create and schedule posts (batch, up to 15) |
|
|
45
62
|
| `delete_post` | Delete a post by ID |
|
|
46
|
-
| `
|
|
63
|
+
| `upload_media` | Upload a local file and get a media key (handles the full flow) |
|
|
64
|
+
| `get_upload_urls` | Get signed URLs to upload media files |
|
|
47
65
|
| `list_pinterest_boards` | Get Pinterest boards for an account |
|
|
48
66
|
| `list_youtube_playlists` | Get YouTube playlists for an account |
|
|
49
67
|
| `generate_connect_link` | Generate a link for clients to connect accounts |
|
|
50
|
-
| `get_upload_urls` | Get signed URLs to upload media files |
|
|
51
|
-
| `upload_media` | Upload a local file and get a media key (handles the full flow) |
|
|
52
68
|
|
|
53
69
|
## Supported Platforms
|
|
54
70
|
|
|
55
71
|
Facebook, Instagram, X (Twitter), TikTok, LinkedIn, YouTube, BlueSky, Threads, Pinterest, Telegram
|
|
56
72
|
|
|
73
|
+
## Platform-Specific Controls
|
|
74
|
+
|
|
75
|
+
When creating posts, you can pass platform-specific settings via the `controls` parameter:
|
|
76
|
+
|
|
77
|
+
| Platform | Controls |
|
|
78
|
+
|----------|----------|
|
|
79
|
+
| **X (Twitter)** | `xCommunityId`, `xQuoteTweetUrl`, `xRetweetUrl` |
|
|
80
|
+
| **Instagram** | `instagramPublishType` (TIMELINE/STORY/REEL), `instagramPostToGrid`, `instagramCollaborators` |
|
|
81
|
+
| **Facebook** | `facebookContentType` (POST/REEL/STORY), `facebookAllowComments`, `facebookPrivacy`, `facebookReelsCollaborators` |
|
|
82
|
+
| **TikTok** | `tiktokPrivacy` (PUBLIC/MUTUAL_FRIENDS/ONLY_ME), `tiktokIsDraft`, `tiktokAllowComments`, `tiktokAllowDuet`, `tiktokAllowStitch`, `tiktokBrandOrganic`, `tiktokBrandContent`, `tiktokAutoAddMusic` |
|
|
83
|
+
| **YouTube** | `youtubeTitle`, `youtubePrivacy` (PUBLIC/PRIVATE/UNLISTED), `youtubeTags`, `youtubeCategoryId`, `youtubeIsShort`, `youtubeMadeForKids`, `youtubePlaylistId` |
|
|
84
|
+
| **Pinterest** | `pinterestBoardId` (required), `pinterestLink` |
|
|
85
|
+
| **LinkedIn** | `linkedinAttachmentKey`, `linkedinAttachmentTitle` |
|
|
86
|
+
|
|
57
87
|
## Media Upload
|
|
58
88
|
|
|
59
89
|
The `upload_media` tool handles the full flow in a single call:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postfast-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "MCP server for the PostFast API — schedule and manage social media posts via AI tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"main": "./dist/index.js",
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
|
+
".claude-plugin",
|
|
12
13
|
"README.md"
|
|
13
14
|
],
|
|
14
15
|
"scripts": {
|