├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── scripts └── set-permissions.js ├── src └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicekate/flux-dev-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicekate/flux-dev-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicekate/flux-dev-mcp/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicekate/flux-dev-mcp/HEAD/package.json -------------------------------------------------------------------------------- /scripts/set-permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicekate/flux-dev-mcp/HEAD/scripts/set-permissions.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicekate/flux-dev-mcp/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicekate/flux-dev-mcp/HEAD/tsconfig.json --------------------------------------------------------------------------------