├── .cursor └── rules │ ├── project-context.mdc │ ├── terminal.mdc │ └── test-cli.mdc ├── .gitignore ├── LICENSE ├── README.md ├── biome.json ├── bun.lock ├── cli.ts ├── docs └── design-decisions.md ├── package.json └── template ├── .cursor └── rules │ └── mcp.mdc ├── .gitignore ├── LICENSE ├── README.md ├── biome.json ├── package.json ├── secrets.json ├── src └── index.ts ├── tsconfig.json ├── worker-configuration.d.ts └── wrangler.jsonc /.cursor/rules/project-context.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/.cursor/rules/project-context.mdc -------------------------------------------------------------------------------- /.cursor/rules/terminal.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/.cursor/rules/terminal.mdc -------------------------------------------------------------------------------- /.cursor/rules/test-cli.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/.cursor/rules/test-cli.mdc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/biome.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/bun.lock -------------------------------------------------------------------------------- /cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/cli.ts -------------------------------------------------------------------------------- /docs/design-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/docs/design-decisions.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/package.json -------------------------------------------------------------------------------- /template/.cursor/rules/mcp.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/template/.cursor/rules/mcp.mdc -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/template/LICENSE -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/template/README.md -------------------------------------------------------------------------------- /template/biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/template/biome.json -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/template/package.json -------------------------------------------------------------------------------- /template/secrets.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /template/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/template/src/index.ts -------------------------------------------------------------------------------- /template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/template/tsconfig.json -------------------------------------------------------------------------------- /template/worker-configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/template/worker-configuration.d.ts -------------------------------------------------------------------------------- /template/wrangler.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zueai/create-mcp/HEAD/template/wrangler.jsonc --------------------------------------------------------------------------------