-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@socialapis/mcp",
"version": "1.0.1",
"description": "MCP server and client for SocialAPIs - Access social media data in Claude, Cursor, and any MCP-compatible tool",
"mcpName": "io.github.SocialAPIsHub/social-media-api",
"type": "module",
"bin": {
"socialapis-mcp": "./mcp-wrapper.js"
},
"main": "mcp-wrapper.js",
"scripts": {
"start": "node mcp-wrapper.js",
"serve": "node server.js",
"test": "node mcp-wrapper.js test-key"
},
"keywords": [
"mcp",
"model-context-protocol",
"social-media",
"api",
"ai-agents",
"claude",
"cursor",
"facebook",
"instagram",
"tiktok"
],
"author": "SocialAPIs",
"license": "MIT",
"homepage": "https://socialapis.io",
"repository": {
"type": "git",
"url": "https://github.com/SocialAPIsHub/mcp-server"
},
"bugs": {
"url": "https://github.com/SocialAPIsHub/mcp-server/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"express": "^4.18.2",
"cors": "^2.8.5"
},
"engines": {
"node": ">=18.0.0"
}
}