├── .gitignore ├── .whitesource ├── Dockerfile ├── README.md ├── package.json ├── pnpm-lock.yaml ├── smithery.yaml ├── src ├── evals │ └── evals.ts └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | /node_modules 3 | /build -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazeb/MCP-Github-Mapper/HEAD/.whitesource -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazeb/MCP-Github-Mapper/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazeb/MCP-Github-Mapper/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazeb/MCP-Github-Mapper/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazeb/MCP-Github-Mapper/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazeb/MCP-Github-Mapper/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/evals/evals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazeb/MCP-Github-Mapper/HEAD/src/evals/evals.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazeb/MCP-Github-Mapper/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazeb/MCP-Github-Mapper/HEAD/tsconfig.json --------------------------------------------------------------------------------