├── .github └── copilot-instructions.md ├── .gitignore ├── .npmrc ├── .nvmrc ├── LICENSE ├── README.md ├── bin.js ├── eslint.config.js ├── package.json ├── pnpm-lock.yaml ├── src ├── index.ts └── utils │ ├── codeDetection.ts │ └── documentationFetcher.ts └── tsconfig.json /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklaserik/effect-mcp/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklaserik/effect-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklaserik/effect-mcp/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.8.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklaserik/effect-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklaserik/effect-mcp/HEAD/README.md -------------------------------------------------------------------------------- /bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | import("./dist/index.js"); 3 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklaserik/effect-mcp/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklaserik/effect-mcp/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklaserik/effect-mcp/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklaserik/effect-mcp/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils/codeDetection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklaserik/effect-mcp/HEAD/src/utils/codeDetection.ts -------------------------------------------------------------------------------- /src/utils/documentationFetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklaserik/effect-mcp/HEAD/src/utils/documentationFetcher.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklaserik/effect-mcp/HEAD/tsconfig.json --------------------------------------------------------------------------------