├── .cursorrules ├── .gitignore ├── LICENSE ├── README.md ├── deepresearch-report.txt ├── docs └── mcp_spec │ └── llms-full.txt ├── improvements-plan.txt ├── index.ts ├── package.json ├── parallel-report.txt ├── pnpm-lock.yaml ├── quantum-deep-research-report.txt ├── quantum-parallel-report.txt ├── src ├── core │ ├── content-analyzer.ts │ ├── content-extractor.ts │ └── research-session.ts ├── deep-research.ts ├── index.ts ├── parallel-search.ts ├── search-queue.ts ├── types.ts └── types │ ├── analysis.ts │ ├── content.ts │ └── session.ts └── tsconfig.json /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/.cursorrules -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/README.md -------------------------------------------------------------------------------- /deepresearch-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/deepresearch-report.txt -------------------------------------------------------------------------------- /docs/mcp_spec/llms-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/docs/mcp_spec/llms-full.txt -------------------------------------------------------------------------------- /improvements-plan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/improvements-plan.txt -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/package.json -------------------------------------------------------------------------------- /parallel-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/parallel-report.txt -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /quantum-deep-research-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/quantum-deep-research-report.txt -------------------------------------------------------------------------------- /quantum-parallel-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/quantum-parallel-report.txt -------------------------------------------------------------------------------- /src/core/content-analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/src/core/content-analyzer.ts -------------------------------------------------------------------------------- /src/core/content-extractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/src/core/content-extractor.ts -------------------------------------------------------------------------------- /src/core/research-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/src/core/research-session.ts -------------------------------------------------------------------------------- /src/deep-research.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/src/deep-research.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/parallel-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/src/parallel-search.ts -------------------------------------------------------------------------------- /src/search-queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/src/search-queue.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/types/analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/src/types/analysis.ts -------------------------------------------------------------------------------- /src/types/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/src/types/content.ts -------------------------------------------------------------------------------- /src/types/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/src/types/session.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qpd-v/mcp-DEEPwebresearch/HEAD/tsconfig.json --------------------------------------------------------------------------------