├── .changeset ├── README.md └── config.json ├── .dockerignore ├── .envrc ├── .github ├── FUNDING.yml ├── actions │ └── setup │ │ └── action.yml └── workflows │ ├── docker.yaml │ └── main.yml ├── .gitignore ├── .prettierrc.json ├── AGENTS.md ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts └── copy-package-json.ts ├── src ├── Markdown.ts ├── Readmes.ts ├── ReferenceDocs.ts └── main.ts ├── tsconfig.json ├── tsconfig.tsbuildinfo └── tsup.config.ts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .git/ 4 | -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [tim-smart] 4 | -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/.github/workflows/docker.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .direnv/ 2 | node_modules/ 3 | dist/ 4 | .env 5 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false 3 | } 4 | -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/flake.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/copy-package-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/scripts/copy-package-json.ts -------------------------------------------------------------------------------- /src/Markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/src/Markdown.ts -------------------------------------------------------------------------------- /src/Readmes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/src/Readmes.ts -------------------------------------------------------------------------------- /src/ReferenceDocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/src/ReferenceDocs.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/src/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tim-smart/effect-mcp/HEAD/tsup.config.ts --------------------------------------------------------------------------------