-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mcp.json
More file actions
45 lines (45 loc) · 1.72 KB
/
.mcp.json
File metadata and controls
45 lines (45 loc) · 1.72 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
{
"_comment": "MCP servers for marketer. All disabled in v0 — flip enabled:true after wiring auth in .env. Keep this file checked in; secrets stay in .env.",
"mcpServers": {
"slack": {
"_comment": "Posts to #marketer and #marketer-approve. Wire after SLACK_BOT_TOKEN lands in .env.",
"enabled": false,
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-slack"],
"env": {
"SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}"
}
},
"salesforce": {
"_comment": "Lead-gen and CRM context. Tier 3 — lead-triage skill. Replace command with chosen Salesforce MCP server.",
"enabled": false,
"command": "npx",
"args": ["-y", "@example/mcp-salesforce-stub"],
"env": {
"SALESFORCE_CLIENT_ID": "${SALESFORCE_CLIENT_ID}",
"SALESFORCE_CLIENT_SECRET": "${SALESFORCE_CLIENT_SECRET}",
"SALESFORCE_REFRESH_TOKEN": "${SALESFORCE_REFRESH_TOKEN}",
"SALESFORCE_INSTANCE_URL": "${SALESFORCE_INSTANCE_URL}"
}
},
"postiz": {
"_comment": "Social posting/scheduling. Tier 2 — post-to-social skill. Confirm Postiz MCP package name when wiring.",
"enabled": false,
"command": "npx",
"args": ["-y", "@example/mcp-postiz-stub"],
"env": {
"POSTIZ_API_URL": "${POSTIZ_API_URL}",
"POSTIZ_API_KEY": "${POSTIZ_API_KEY}"
}
},
"github": {
"_comment": "Marketing-adjacent issues on oramasearch/amaro and amaro-marketingsite. Often unnecessary — gh CLI from the bridge is usually enough.",
"enabled": false,
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_TOKEN}"
}
}
}
}