File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ {
2+ "mcpServers" : {
3+ "fetch" : {
4+ "command" : " https://raw.githubusercontent.com/modelcontextprotocol/servers/main/src/fetch/index.ts" ,
5+ "args" : []
6+ },
7+ "sqlite" : {
8+ "command" : " https://raw.githubusercontent.com/modelcontextprotocol/servers/main/src/sqlite/index.ts" ,
9+ "args" : []
10+ },
11+ "elasticsearch" : {
12+ "command" : " https://raw.githubusercontent.com/modelcontextprotocol/servers/main/src/elasticsearch/index.ts" ,
13+ "args" : []
14+ },
15+ "puppeteer" : {
16+ "command" : " npx" ,
17+ "args" : [
18+ " -y" ,
19+ " @modelcontextprotocol/server-puppeteer"
20+ ]
21+ },
22+ "docker" : {
23+ "command" : " npx" ,
24+ "args" : [
25+ " -y" ,
26+ " @modelcontextprotocol/server-docker"
27+ ]
28+ }
29+ }
30+ }
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : " ../../tsconfig.json" ,
3+ "compilerOptions" : {
4+ "outDir" : " ./package" ,
5+ "noEmit" : false ,
6+ "target" : " es2017" ,
7+ "lib" : [
8+ " es2017" ,
9+ " esnext.asynciterable"
10+ ],
11+ "strict" : true ,
12+ "strictPropertyInitialization" : false ,
13+ "esModuleInterop" : true ,
14+ "emitDecoratorMetadata" : true ,
15+ "experimentalDecorators" : true ,
16+ "resolveJsonModule" : true ,
17+ "skipLibCheck" : true
18+ },
19+ "include" : [" ./src/**/*.ts" ],
20+ "exclude" : [" node_modules" ]
21+ }
You can’t perform that action at this time.
0 commit comments