├── .gitignore ├── LICENSE ├── README.md ├── cline.notes.md ├── package.json ├── pnpm-lock.yaml ├── src ├── index.ts └── utils │ ├── puppeteer-setup.ts │ └── python-setup.ts ├── test-moondream-server.js ├── test-moondream.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightTrek/moondream-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightTrek/moondream-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightTrek/moondream-mcp/HEAD/README.md -------------------------------------------------------------------------------- /cline.notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightTrek/moondream-mcp/HEAD/cline.notes.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightTrek/moondream-mcp/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightTrek/moondream-mcp/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightTrek/moondream-mcp/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils/puppeteer-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightTrek/moondream-mcp/HEAD/src/utils/puppeteer-setup.ts -------------------------------------------------------------------------------- /src/utils/python-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightTrek/moondream-mcp/HEAD/src/utils/python-setup.ts -------------------------------------------------------------------------------- /test-moondream-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightTrek/moondream-mcp/HEAD/test-moondream-server.js -------------------------------------------------------------------------------- /test-moondream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightTrek/moondream-mcp/HEAD/test-moondream.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightTrek/moondream-mcp/HEAD/tsconfig.json --------------------------------------------------------------------------------