├── LICENSE ├── README.md ├── biome.json ├── bun.lock ├── cli.ts ├── docs └── design-decisions.md ├── package.json └── template ├── LICENSE ├── README.md ├── biome.json ├── package.json ├── secrets.json ├── src └── index.ts ├── tsconfig.json ├── worker-configuration.d.ts └── wrangler.jsonc /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/biome.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/bun.lock -------------------------------------------------------------------------------- /cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/cli.ts -------------------------------------------------------------------------------- /docs/design-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/docs/design-decisions.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/package.json -------------------------------------------------------------------------------- /template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/template/LICENSE -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/template/README.md -------------------------------------------------------------------------------- /template/biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/template/biome.json -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/template/package.json -------------------------------------------------------------------------------- /template/secrets.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /template/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/template/src/index.ts -------------------------------------------------------------------------------- /template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/template/tsconfig.json -------------------------------------------------------------------------------- /template/worker-configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/template/worker-configuration.d.ts -------------------------------------------------------------------------------- /template/wrangler.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefergrgrgrg/create-mcp/HEAD/template/wrangler.jsonc --------------------------------------------------------------------------------