@followr/mcp 0.1.0
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 +56 -0
- package/dist/bin/followr-mcp.js +2790 -0
- package/dist/bin/followr-mcp.js.map +1 -0
- package/package.json +44 -0
package/README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# @followr/mcp
|
|
2
|
+
|
|
3
|
+
MCP server for Followr. Connects Claude (and any MCP-compatible AI agent) to your Followr workspace.
|
|
4
|
+
|
|
5
|
+
**Status:** v0.1 alpha. Surface is growing rapidly. See repo for roadmap.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
In your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
|
|
10
|
+
|
|
11
|
+
```json
|
|
12
|
+
{
|
|
13
|
+
"mcpServers": {
|
|
14
|
+
"followr": {
|
|
15
|
+
"command": "npx",
|
|
16
|
+
"args": ["-y", "@followr/mcp"],
|
|
17
|
+
"env": {
|
|
18
|
+
"FOLLOWR_API_TOKEN": "your_followr_api_token_here"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Restart Claude Desktop. The `followr` connector should appear in the connectors panel.
|
|
26
|
+
|
|
27
|
+
For Claude Code:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
claude mcp add followr "npx -y @followr/mcp" --env FOLLOWR_API_TOKEN=your_token
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
For Cursor: similar, via the MCP servers config UI.
|
|
34
|
+
|
|
35
|
+
## Generate your API token
|
|
36
|
+
|
|
37
|
+
1. Go to https://app.followr.ai
|
|
38
|
+
2. Settings > Company Settings > API Keys
|
|
39
|
+
3. Click "Generate" and copy the value
|
|
40
|
+
4. Paste it in your Claude Desktop config
|
|
41
|
+
|
|
42
|
+
## What you can ask Claude
|
|
43
|
+
|
|
44
|
+
- "Show me pending drafts in my Acme workspace"
|
|
45
|
+
- "Generate 5 viral shorts about productivity for this week"
|
|
46
|
+
- "Take this blog post URL and create posts for Twitter, Instagram, LinkedIn scheduled for Monday"
|
|
47
|
+
- "Approve draft 1234"
|
|
48
|
+
- "List unread DMs across Facebook and Instagram"
|
|
49
|
+
|
|
50
|
+
## Repository
|
|
51
|
+
|
|
52
|
+
Source code, full tool list, and roadmap: https://github.com/marcosplaza/followr-mcp (TODO: replace with actual repo URL when published)
|
|
53
|
+
|
|
54
|
+
## License
|
|
55
|
+
|
|
56
|
+
MIT
|