├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README.zh-CN.md ├── assets └── banner.png ├── package.json ├── pnpm-lock.yaml ├── src ├── config │ ├── config-manager.ts │ ├── constants.ts │ └── schemas.ts ├── core │ ├── base-client.ts │ ├── rate-limiter.ts │ └── task-manager.ts ├── index.ts ├── services │ ├── image-service.ts │ └── tts-service.ts └── utils │ ├── error-handler.ts │ └── file-handler.ts └── tsconfig.json /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/assets/banner.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/config/config-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/src/config/config-manager.ts -------------------------------------------------------------------------------- /src/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/src/config/constants.ts -------------------------------------------------------------------------------- /src/config/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/src/config/schemas.ts -------------------------------------------------------------------------------- /src/core/base-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/src/core/base-client.ts -------------------------------------------------------------------------------- /src/core/rate-limiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/src/core/rate-limiter.ts -------------------------------------------------------------------------------- /src/core/task-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/src/core/task-manager.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/services/image-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/src/services/image-service.ts -------------------------------------------------------------------------------- /src/services/tts-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/src/services/tts-service.ts -------------------------------------------------------------------------------- /src/utils/error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/src/utils/error-handler.ts -------------------------------------------------------------------------------- /src/utils/file-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/src/utils/file-handler.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsychArch/minimax-mcp-tools/HEAD/tsconfig.json --------------------------------------------------------------------------------