├── .github └── workflows │ └── npm-publish.yaml ├── .gitignore ├── .npmignore ├── Dockerfile ├── LICENSE ├── README.md ├── package.json ├── smithery.yaml ├── src └── index.ts └── tsconfig.json /.github/workflows/npm-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurtTheCoder/mcp-maigret/HEAD/.github/workflows/npm-publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurtTheCoder/mcp-maigret/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurtTheCoder/mcp-maigret/HEAD/.npmignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurtTheCoder/mcp-maigret/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurtTheCoder/mcp-maigret/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurtTheCoder/mcp-maigret/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurtTheCoder/mcp-maigret/HEAD/package.json -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurtTheCoder/mcp-maigret/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurtTheCoder/mcp-maigret/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurtTheCoder/mcp-maigret/HEAD/tsconfig.json --------------------------------------------------------------------------------