├── .dev.vars.example ├── .gitignore ├── README.md ├── biome.json ├── package.json ├── pnpm-lock.yaml ├── src ├── extract.ts └── index.ts ├── tsconfig.json ├── worker-configuration.d.ts └── wrangler.jsonc /.dev.vars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/workers-mcp-demo/HEAD/.dev.vars.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/workers-mcp-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/workers-mcp-demo/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/workers-mcp-demo/HEAD/biome.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/workers-mcp-demo/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/workers-mcp-demo/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/workers-mcp-demo/HEAD/src/extract.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/workers-mcp-demo/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/workers-mcp-demo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /worker-configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/workers-mcp-demo/HEAD/worker-configuration.d.ts -------------------------------------------------------------------------------- /wrangler.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akazwz/workers-mcp-demo/HEAD/wrangler.jsonc --------------------------------------------------------------------------------