├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── package.json ├── src └── index.ts ├── template ├── README.md.ejs ├── dotfile-gitignore ├── package.json.ejs ├── src │ └── index.ts.ejs └── tsconfig.json └── tsconfig.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/.npmrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/SECURITY.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/src/index.ts -------------------------------------------------------------------------------- /template/README.md.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/template/README.md.ejs -------------------------------------------------------------------------------- /template/dotfile-gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | *.log 4 | .env* -------------------------------------------------------------------------------- /template/package.json.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/template/package.json.ejs -------------------------------------------------------------------------------- /template/src/index.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/template/src/index.ts.ejs -------------------------------------------------------------------------------- /template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/template/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modelcontextprotocol/create-typescript-server/HEAD/tsconfig.json --------------------------------------------------------------------------------