File tree Expand file tree Collapse file tree 3 files changed +20
-14
lines changed Expand file tree Collapse file tree 3 files changed +20
-14
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "mcpServers" : {
3
+ "everything" : {
4
+ "command" : " npm" ,
5
+ "args" : [
6
+ " --silent" ,
7
+ " --prefix" ,
8
+ " /path/to/mcp/servers/src/everything" ,
9
+ " run" ,
10
+ " start"
11
+ ],
12
+ "env" : {
13
+ "FOO" : " bar" ,
14
+ "BAZ" : " bat"
15
+ }
16
+ }
17
+ }
18
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ const getWebServerCommand = () => {
7
7
*/
8
8
switch ( process . env . CLI_TEST_SCENARIO ) {
9
9
case "inline" :
10
- return "npx . -e FOO=bar -e BAZ=bat uv run main.py " ;
10
+ return "npx . -e FOO=bar -e BAZ=bat npm --silent --prefix /path/to/mcp/servers/src/everything run start " ;
11
11
case "file" :
12
- return "npx . --config client/e2e/fixtures/test-cli-config .json --server test-server " ;
12
+ return "npx . --config client/e2e/fixtures/everything-server .json --server everything " ;
13
13
/* FIXME: With and without a mock localStorage
14
14
* case "none":
15
15
* return "npx . ";
You can’t perform that action at this time.
0 commit comments