@mcp-abap-adt/configurator 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/bin/mcp-conf-tui.js +2 -1
- package/bin/mcp-conf.js +32 -16
- package/docs/CLIENT_INSTALLERS.md +8 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@ mcp-conf --client codex --name abap-http --transport http --url http://localhost
|
|
|
20
20
|
mcp-conf --client opencode --name abap --transport http --url http://localhost:3000/mcp/stream/http
|
|
21
21
|
mcp-conf --client kilo --name abap --transport http --url http://localhost:3000/mcp/stream/http
|
|
22
22
|
mcp-conf --client copilot --name abap --transport http --url http://localhost:3000/mcp/stream/http --header x-mcp-destination=trial
|
|
23
|
+
mcp-conf --client qwen --name abap --transport http --url http://localhost:3000/mcp/stream/http
|
|
23
24
|
mcp-conf --client crush --name abap --mcp TRIAL
|
|
24
25
|
mcp-conf --client crush --name abap --transport http --url http://localhost:3000/mcp/stream/http
|
|
25
26
|
mcp-conf tui
|
package/bin/mcp-conf-tui.js
CHANGED
|
@@ -15,6 +15,7 @@ const CLIENTS = [
|
|
|
15
15
|
{ name: "opencode", message: "OpenCode (kilo)" },
|
|
16
16
|
{ name: "copilot", message: "GitHub Copilot" },
|
|
17
17
|
{ name: "antigravity", message: "Antigravity" },
|
|
18
|
+
{ name: "qwen", message: "Qwen" },
|
|
18
19
|
{ name: "crush", message: "Crush" },
|
|
19
20
|
];
|
|
20
21
|
|
|
@@ -265,7 +266,7 @@ function getSupportedScopes(clientName) {
|
|
|
265
266
|
if (clientName === "copilot") {
|
|
266
267
|
return ["local"];
|
|
267
268
|
}
|
|
268
|
-
if (["cline", "goose", "windsurf", "antigravity"].includes(clientName)) {
|
|
269
|
+
if (["cline", "goose", "windsurf", "antigravity", "qwen"].includes(clientName)) {
|
|
269
270
|
return ["global"];
|
|
270
271
|
}
|
|
271
272
|
return ["global", "local"];
|
package/bin/mcp-conf.js
CHANGED
|
@@ -419,6 +419,18 @@ for (const client of options.clients) {
|
|
|
419
419
|
writeJsonConfig(getAntigravityPath(home, scope), options.name, serverArgs, "antigravity");
|
|
420
420
|
}
|
|
421
421
|
break;
|
|
422
|
+
case "qwen":
|
|
423
|
+
requireScope("Qwen", ["global"], scope);
|
|
424
|
+
if (options.list) {
|
|
425
|
+
listJsonConfig(getQwenPath(home), "qwen");
|
|
426
|
+
} else if (options.show) {
|
|
427
|
+
showJsonConfig(getQwenPath(home), "qwen", options.name);
|
|
428
|
+
} else if (options.where) {
|
|
429
|
+
whereJsonConfig(getQwenPath(home), "qwen", options.name);
|
|
430
|
+
} else {
|
|
431
|
+
writeJsonConfig(getQwenPath(home), options.name, serverArgs, "qwen");
|
|
432
|
+
}
|
|
433
|
+
break;
|
|
422
434
|
case "copilot":
|
|
423
435
|
requireScope("GitHub Copilot", ["local"], scope);
|
|
424
436
|
if (options.list) {
|
|
@@ -615,6 +627,10 @@ function getAntigravityPath(homeDir, scopeValue) {
|
|
|
615
627
|
return path.join(homeDir, ".gemini", "antigravity", "mcp_config.json");
|
|
616
628
|
}
|
|
617
629
|
|
|
630
|
+
function getQwenPath(homeDir) {
|
|
631
|
+
return path.join(homeDir, ".qwen", "settings.json");
|
|
632
|
+
}
|
|
633
|
+
|
|
618
634
|
function getWindsurfPath(platformValue, homeDir, userProfileDir) {
|
|
619
635
|
if (platformValue === "win32") {
|
|
620
636
|
return path.join(userProfileDir, ".codeium", "windsurf", "mcp_config.json");
|
|
@@ -1786,7 +1802,7 @@ Usage:
|
|
|
1786
1802
|
mcp-conf add --client <name> --name <serverName> [--env <name> | --env-path <path> | --session-env | --mcp <dest>] [options]
|
|
1787
1803
|
|
|
1788
1804
|
Options:
|
|
1789
|
-
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | crush (repeatable)
|
|
1805
|
+
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | qwen | crush (repeatable)
|
|
1790
1806
|
--name <serverName> required MCP server name key
|
|
1791
1807
|
--env <name> env profile name (stdio only), writes --env=<name>
|
|
1792
1808
|
--env-path <path> .env path (stdio only)
|
|
@@ -1804,7 +1820,7 @@ Options:
|
|
|
1804
1820
|
--dry-run print changes without writing files
|
|
1805
1821
|
|
|
1806
1822
|
Notes:
|
|
1807
|
-
Antigravity
|
|
1823
|
+
Antigravity and Qwen are global-only; use --global.
|
|
1808
1824
|
`);
|
|
1809
1825
|
break;
|
|
1810
1826
|
case "rm":
|
|
@@ -1814,7 +1830,7 @@ Usage:
|
|
|
1814
1830
|
mcp-conf rm --client <name> --name <serverName> [options]
|
|
1815
1831
|
|
|
1816
1832
|
Options:
|
|
1817
|
-
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | crush (repeatable)
|
|
1833
|
+
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | qwen | crush (repeatable)
|
|
1818
1834
|
--name <serverName> required MCP server name key
|
|
1819
1835
|
--global write to global user config (default)
|
|
1820
1836
|
--local write to project config (where supported)
|
|
@@ -1823,7 +1839,7 @@ Options:
|
|
|
1823
1839
|
--dry-run print changes without writing files
|
|
1824
1840
|
|
|
1825
1841
|
Notes:
|
|
1826
|
-
Antigravity
|
|
1842
|
+
Antigravity and Qwen are global-only; use --global.
|
|
1827
1843
|
`);
|
|
1828
1844
|
break;
|
|
1829
1845
|
case "ls":
|
|
@@ -1833,14 +1849,14 @@ Usage:
|
|
|
1833
1849
|
mcp-conf ls --client <name> [options]
|
|
1834
1850
|
|
|
1835
1851
|
Options:
|
|
1836
|
-
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | crush (repeatable)
|
|
1852
|
+
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | qwen | crush (repeatable)
|
|
1837
1853
|
--global write to global user config (default)
|
|
1838
1854
|
--local write to project config (where supported)
|
|
1839
1855
|
--all-projects Claude global: list across all projects
|
|
1840
1856
|
--project <path> Claude global: target a specific project path
|
|
1841
1857
|
|
|
1842
1858
|
Notes:
|
|
1843
|
-
Antigravity
|
|
1859
|
+
Antigravity and Qwen are global-only; use --global.
|
|
1844
1860
|
`);
|
|
1845
1861
|
break;
|
|
1846
1862
|
case "enable":
|
|
@@ -1850,7 +1866,7 @@ Usage:
|
|
|
1850
1866
|
mcp-conf enable --client <name> --name <serverName> [options]
|
|
1851
1867
|
|
|
1852
1868
|
Options:
|
|
1853
|
-
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | crush (repeatable)
|
|
1869
|
+
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | qwen | crush (repeatable)
|
|
1854
1870
|
--name <serverName> required MCP server name key
|
|
1855
1871
|
--global write to global user config (default)
|
|
1856
1872
|
--local write to project config (where supported)
|
|
@@ -1859,7 +1875,7 @@ Options:
|
|
|
1859
1875
|
--dry-run print changes without writing files
|
|
1860
1876
|
|
|
1861
1877
|
Notes:
|
|
1862
|
-
Antigravity
|
|
1878
|
+
Antigravity and Qwen are global-only; use --global.
|
|
1863
1879
|
`);
|
|
1864
1880
|
break;
|
|
1865
1881
|
case "disable":
|
|
@@ -1869,7 +1885,7 @@ Usage:
|
|
|
1869
1885
|
mcp-conf disable --client <name> --name <serverName> [options]
|
|
1870
1886
|
|
|
1871
1887
|
Options:
|
|
1872
|
-
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | crush (repeatable)
|
|
1888
|
+
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | qwen | crush (repeatable)
|
|
1873
1889
|
--name <serverName> required MCP server name key
|
|
1874
1890
|
--global write to global user config (default)
|
|
1875
1891
|
--local write to project config (where supported)
|
|
@@ -1878,7 +1894,7 @@ Options:
|
|
|
1878
1894
|
--dry-run print changes without writing files
|
|
1879
1895
|
|
|
1880
1896
|
Notes:
|
|
1881
|
-
Antigravity
|
|
1897
|
+
Antigravity and Qwen are global-only; use --global.
|
|
1882
1898
|
`);
|
|
1883
1899
|
break;
|
|
1884
1900
|
case "where":
|
|
@@ -1888,7 +1904,7 @@ Usage:
|
|
|
1888
1904
|
mcp-conf where --client <name> --name <serverName> [options]
|
|
1889
1905
|
|
|
1890
1906
|
Options:
|
|
1891
|
-
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | crush (repeatable)
|
|
1907
|
+
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | qwen | crush (repeatable)
|
|
1892
1908
|
--name <serverName> required MCP server name key
|
|
1893
1909
|
--global write to global user config (default)
|
|
1894
1910
|
--local write to project config (where supported)
|
|
@@ -1896,7 +1912,7 @@ Options:
|
|
|
1896
1912
|
--project <path> Claude global: target a specific project path
|
|
1897
1913
|
|
|
1898
1914
|
Notes:
|
|
1899
|
-
Antigravity
|
|
1915
|
+
Antigravity and Qwen are global-only; use --global.
|
|
1900
1916
|
`);
|
|
1901
1917
|
break;
|
|
1902
1918
|
case "show":
|
|
@@ -1906,7 +1922,7 @@ Usage:
|
|
|
1906
1922
|
mcp-conf show --client <name> --name <serverName> [options]
|
|
1907
1923
|
|
|
1908
1924
|
Options:
|
|
1909
|
-
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | crush (repeatable)
|
|
1925
|
+
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | qwen | crush (repeatable)
|
|
1910
1926
|
--name <serverName> required MCP server name key
|
|
1911
1927
|
--global read from global user config (default)
|
|
1912
1928
|
--local read from project config (where supported)
|
|
@@ -1916,7 +1932,7 @@ Options:
|
|
|
1916
1932
|
--normalized output normalized view (for tooling); default is raw config entry
|
|
1917
1933
|
|
|
1918
1934
|
Notes:
|
|
1919
|
-
Antigravity
|
|
1935
|
+
Antigravity and Qwen are global-only; use --global.
|
|
1920
1936
|
`);
|
|
1921
1937
|
break;
|
|
1922
1938
|
case "update":
|
|
@@ -1926,7 +1942,7 @@ Usage:
|
|
|
1926
1942
|
mcp-conf update --client <name> --name <serverName> [--env <name> | --env-path <path> | --session-env | --mcp <dest>] [options]
|
|
1927
1943
|
|
|
1928
1944
|
Options:
|
|
1929
|
-
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | crush (repeatable)
|
|
1945
|
+
--client <name> cline | codex | claude | goose | cursor | windsurf | opencode | kilo | copilot | antigravity | qwen | crush (repeatable)
|
|
1930
1946
|
--name <serverName> required MCP server name key
|
|
1931
1947
|
--env <name> env profile name (stdio only), writes --env=<name>
|
|
1932
1948
|
--env-path <path> .env path (stdio only)
|
|
@@ -1942,7 +1958,7 @@ Options:
|
|
|
1942
1958
|
--dry-run print changes without writing files
|
|
1943
1959
|
|
|
1944
1960
|
Notes:
|
|
1945
|
-
Antigravity
|
|
1961
|
+
Antigravity and Qwen are global-only; use --global.
|
|
1946
1962
|
`);
|
|
1947
1963
|
break;
|
|
1948
1964
|
case "tui":
|
|
@@ -24,6 +24,7 @@ mcp-conf add --client opencode --name abap --transport http --url http://localho
|
|
|
24
24
|
mcp-conf add --client kilo --name abap --transport http --url http://localhost:3000/mcp/stream/http
|
|
25
25
|
mcp-conf add --client copilot --name abap --transport http --url http://localhost:3000/mcp/stream/http --header x-mcp-destination=trial
|
|
26
26
|
mcp-conf add --client antigravity --name abap --transport http --url http://localhost:3000/mcp/stream/http
|
|
27
|
+
mcp-conf add --client qwen --name abap --transport http --url http://localhost:3000/mcp/stream/http
|
|
27
28
|
mcp-conf add --client crush --name abap --mcp TRIAL
|
|
28
29
|
mcp-conf add --client crush --name abap --transport http --url http://localhost:3000/mcp/stream/http
|
|
29
30
|
mcp-conf tui
|
|
@@ -51,6 +52,7 @@ Enable MCP:
|
|
|
51
52
|
mcp-conf enable --client codex --name abap
|
|
52
53
|
mcp-conf enable --client cline --name abap
|
|
53
54
|
mcp-conf enable --client antigravity --name abap
|
|
55
|
+
mcp-conf enable --client qwen --name abap
|
|
54
56
|
mcp-conf enable --client crush --name abap
|
|
55
57
|
```
|
|
56
58
|
|
|
@@ -60,6 +62,7 @@ mcp-conf rm --client codex --name abap
|
|
|
60
62
|
mcp-conf rm --client cline --name abap
|
|
61
63
|
mcp-conf rm --client claude --name abap
|
|
62
64
|
mcp-conf rm --client antigravity --name abap
|
|
65
|
+
mcp-conf rm --client qwen --name abap
|
|
63
66
|
mcp-conf rm --client crush --name abap
|
|
64
67
|
```
|
|
65
68
|
|
|
@@ -70,6 +73,7 @@ mcp-conf ls --client cline
|
|
|
70
73
|
mcp-conf ls --client claude --local
|
|
71
74
|
mcp-conf ls --client claude --all-projects
|
|
72
75
|
mcp-conf ls --client antigravity --global
|
|
76
|
+
mcp-conf ls --client qwen --global
|
|
73
77
|
mcp-conf ls --client crush
|
|
74
78
|
mcp-conf ls --client crush --local
|
|
75
79
|
```
|
|
@@ -93,7 +97,7 @@ mcp-conf tui
|
|
|
93
97
|
|
|
94
98
|
Options:
|
|
95
99
|
- Commands: `add`, `rm`, `ls`, `show`, `enable`, `disable`, `where`, `update`, `tui` (first argument)
|
|
96
|
-
- `--client <name>` (repeatable): `cline`, `codex`, `claude`, `goose`, `cursor`, `windsurf`, `opencode` (`kilo` alias), `copilot`, `antigravity`, `crush`
|
|
100
|
+
- `--client <name>` (repeatable): `cline`, `codex`, `claude`, `goose`, `cursor`, `windsurf`, `opencode` (`kilo` alias), `copilot`, `antigravity`, `qwen`, `crush`
|
|
97
101
|
- `--env <name>`: use named env profile; writes `--env=<name>` (stdio only)
|
|
98
102
|
- `--env-path <path>`: use a specific `.env` file (stdio only)
|
|
99
103
|
- `--session-env`: use shell/session environment variables (stdio only)
|
|
@@ -116,7 +120,7 @@ Notes:
|
|
|
116
120
|
- `mcp-conf tui` starts an interactive wizard for `ls`/`show`/`add`/`update`/`rm`/`enable`/`disable`.
|
|
117
121
|
- Cursor/Copilot enable/disable are not implemented yet.
|
|
118
122
|
- Antigravity enable/disable uses `disabled: true|false` on the entry.
|
|
119
|
-
- Antigravity
|
|
123
|
+
- Antigravity and Qwen are global-only; use `--global`.
|
|
120
124
|
- Claude stores enable/disable state under `enabledMcpServers` and `disabledMcpServers` for each project.
|
|
121
125
|
- Claude enable/disable always updates `~/.claude.json` (global scope), even if you pass `--local`.
|
|
122
126
|
- Antigravity HTTP entries use `serverUrl` instead of `url`.
|
|
@@ -163,6 +167,8 @@ Global (default) locations:
|
|
|
163
167
|
- **Antigravity**:
|
|
164
168
|
- Linux/macOS: `~/.gemini/antigravity/mcp_config.json`
|
|
165
169
|
- Note: path is community-reported; verify against latest vendor docs.
|
|
170
|
+
- **Qwen**:
|
|
171
|
+
- Linux/macOS: `~/.qwen/settings.json` (uses `mcpServers.<name>`)
|
|
166
172
|
- **Crush**:
|
|
167
173
|
- Linux/macOS: `~/.config/crush/crush.json`
|
|
168
174
|
- Windows: `%USERPROFILE%\AppData\Local\crush\crush.json`
|