-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathserver.json
More file actions
46 lines (46 loc) · 1.31 KB
/
Copy pathserver.json
File metadata and controls
46 lines (46 loc) · 1.31 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
"name": "io.github.ndesv21/socialclaw",
"description": "Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.",
"repository": {
"url": "https://github.com/ndesv21/socialclaw",
"source": "github"
},
"websiteUrl": "https://getsocialclaw.com",
"version": "0.1.18",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "socialclaw",
"version": "0.1.18",
"runtimeHint": "npx",
"transport": { "type": "stdio" },
"runtimeArguments": [
{ "type": "positional", "value": "mcp", "isRequired": true }
],
"environmentVariables": [
{
"name": "SOCIALCLAW_API_KEY",
"description": "SocialClaw workspace API key from https://getsocialclaw.com/dashboard",
"isRequired": true,
"isSecret": true
}
]
}
],
"remotes": [
{
"type": "streamable-http",
"url": "https://getsocialclaw.com/mcp",
"headers": [
{
"name": "Authorization",
"description": "Bearer <SocialClaw workspace API key>",
"isRequired": true,
"isSecret": true
}
]
}
]
}