-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp.json.example
More file actions
44 lines (43 loc) · 1.87 KB
/
Copy pathmcp.json.example
File metadata and controls
44 lines (43 loc) · 1.87 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
{
"mcpServers": {
"allure-analyzer": {
"command": "/Users/sumesh.p/projects/allure_analyzer/.venv/bin/python",
"args": ["/Users/sumesh.p/projects/allure_analyzer/mcp_server.py"],
"env": {
"JIRA_BASE_URL": "https://jira.corp.adobe.com",
"JIRA_PROJECT_KEYS": "MC,AC,ACP2E,MAGETWO,LYNX",
"JIRA_TOKEN": "your_jira_personal_access_token"
}
}
},
"_windows_example": {
"_notes": [
"Windows setup differs from macOS/Linux in three ways:",
"1. The venv Python is at .venv\\Scripts\\python.exe (not .venv/bin/python).",
"2. Paths must use escaped backslashes (\\\\) in JSON.",
"3. Add \"cwd\" pointing at the project root. config.py loads .env via a RELATIVE path,",
" so the server only finds your .env when launched from the project directory.",
"",
"With \"cwd\" set, JIRA_* values are read from the project's .env, so you can omit the",
"\"env\" block below and keep your token in one place. Keep \"env\" only if you prefer to",
"set credentials inline (inline env vars override .env).",
"",
"Claude Desktop config location on Windows:",
"%APPDATA%\\Claude\\claude_desktop_config.json",
"(edit via Settings -> Developer -> Edit Config, then fully quit and reopen the app).",
"Copy the \"allure-analyzer\" block below into your existing \"mcpServers\" object."
],
"mcpServers": {
"allure-analyzer": {
"command": "C:\\Users\\<you>\\Projects\\allure-analyzer\\.venv\\Scripts\\python.exe",
"args": ["C:\\Users\\<you>\\Projects\\allure-analyzer\\mcp_server.py"],
"cwd": "C:\\Users\\<you>\\Projects\\allure-analyzer",
"env": {
"JIRA_BASE_URL": "https://jira.corp.adobe.com",
"JIRA_PROJECT_KEYS": "MC,AC,ACP2E,MAGETWO,LYNX",
"JIRA_TOKEN": "your_jira_personal_access_token"
}
}
}
}
}