@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/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@followr/mcp",
3
+ "version": "0.1.0",
4
+ "description": "Followr MCP server. Connect Claude (and any MCP-compatible AI agent) to your Followr workspace to manage posts, generate AI content, work with avatars and videos, and orchestrate social media workflows from natural language.",
5
+ "type": "module",
6
+ "bin": {
7
+ "followr-mcp": "./dist/bin/followr-mcp.js"
8
+ },
9
+ "files": [
10
+ "dist/bin/followr-mcp.js",
11
+ "dist/bin/followr-mcp.js.map",
12
+ "README.md"
13
+ ],
14
+ "scripts": {
15
+ "build": "tsup",
16
+ "clean": "rm -rf dist tsconfig.tsbuildinfo",
17
+ "start": "node dist/bin/followr-mcp.js"
18
+ },
19
+ "dependencies": {
20
+ "@modelcontextprotocol/sdk": "^1.0.0",
21
+ "zod": "^3.23.0"
22
+ },
23
+ "devDependencies": {
24
+ "@followr-mcp/mcp-core": "0.1.0",
25
+ "@followr-mcp/shared": "0.1.0",
26
+ "tsup": "^8.3.0"
27
+ },
28
+ "engines": {
29
+ "node": ">=20"
30
+ },
31
+ "keywords": [
32
+ "mcp",
33
+ "claude",
34
+ "anthropic",
35
+ "model-context-protocol",
36
+ "followr",
37
+ "social-media",
38
+ "ai-agent"
39
+ ],
40
+ "license": "MIT",
41
+ "publishConfig": {
42
+ "access": "public"
43
+ }
44
+ }