-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcp-json-example.json
More file actions
61 lines (61 loc) · 1.96 KB
/
mcp-json-example.json
File metadata and controls
61 lines (61 loc) · 1.96 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
55
56
57
58
59
60
61
{
"$comment": "Example .mcp.json for a workspace with multiple MCP servers configured",
"mcpServers": {
"mcp-atlassian": {
"$comment": "Jira and Confluence integration via uvx",
"command": "uvx",
"args": ["--python=3.12", "mcp-atlassian"],
"env": {
"JIRA_URL": "https://jira.example.com",
"CONFLUENCE_URL": "https://wiki.example.com",
"JIRA_PERSONAL_TOKEN": "${JIRA_PERSONAL_TOKEN}",
"CONFLUENCE_PERSONAL_TOKEN": "${CONFLUENCE_PERSONAL_TOKEN}"
}
},
"slack": {
"$comment": "Slack workspace integration",
"command": "npx",
"args": ["-y", "slack-mcp-server@latest", "--transport", "stdio"],
"env": {
"SLACK_MCP_XOXP_TOKEN": "${SLACK_MCP_XOXP_TOKEN}",
"SLACK_MCP_ADD_MESSAGE_TOOL": "true"
}
},
"postgres-dev": {
"$comment": "PostgreSQL database access - connection string as argument",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres",
"postgresql://user:password@localhost:5432/mydb"
]
},
"coralogix": {
"$comment": "Coralogix observability",
"command": "npx",
"args": ["-y", "@nickholden/coralogix-mcp-server"],
"env": {
"CORALOGIX_API_KEY": "${CORALOGIX_API_KEY}",
"CORALOGIX_REGION": "auto",
"CORALOGIX_ENV": "production"
}
},
"github": {
"$comment": "GitHub.com via HTTP MCP",
"type": "http",
"url": "https://api.githubcopilot.com/mcp",
"headers": {
"Authorization": "Bearer ${GITHUB_TOKEN}"
}
},
"github-enterprise": {
"$comment": "GitHub Enterprise via Docker",
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "GITHUB_PERSONAL_ACCESS_TOKEN", "-e", "GITHUB_HOST", "ghcr.io/github/github-mcp-server"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GH_ENTERPRISE_TOKEN}",
"GITHUB_HOST": "https://git.corp.example.com"
}
}
}
}