-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
54 lines (54 loc) · 1.36 KB
/
server.json
File metadata and controls
54 lines (54 loc) · 1.36 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
47
48
49
50
51
52
53
54
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.SocialAPIsHub/social-media-api",
"description": "Unified social media API for AI agents. Access Facebook, Instagram, TikTok, and more.",
"repository": {
"url": "https://github.com/SocialAPIsHub/mcp-server",
"source": "github"
},
"version": "1.0.1",
"homepage": "https://socialapis.io",
"license": "MIT",
"tags": [
"social-media",
"facebook",
"instagram",
"tiktok",
"api",
"data-extraction",
"analytics",
"ai-agents",
"automation"
],
"categories": [
"data-apis",
"social-media"
],
"packages": [
{
"registryType": "npm",
"identifier": "@socialapis/mcp",
"version": "1.0.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "SOCIALAPIS_API_KEY",
"description": "Your SocialAPIs API key. Get yours at https://socialapis.io/dashboard",
"isRequired": true,
"format": "string",
"isSecret": true
},
{
"name": "MCP_PROXY_URL",
"description": "MCP proxy server URL (optional)",
"isRequired": false,
"format": "string",
"isSecret": false,
"default": "https://mcp.socialapis.io"
}
]
}
]
}