Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
d6ff3ed
v0.1.8 - feat: Implement search queue system with rate limiting and b…
qpd-v Jan 12, 2025
360f3fb
v0.1.9 - feat: Add execution time tracking for parallel search results
qpd-v Jan 12, 2025
4337c7b
chore: update package name and repository details
qpd-v Jan 13, 2025
bbe5dee
v0.2.0 - Update README and package.json for deep web research enhance…
qpd-v Jan 13, 2025
4f8cad8
v0.2.1 - chore: update turndown and @types/turndown to latest versions
qpd-v Jan 13, 2025
7ab9735
feat: Enhance error handling in search queue and update TypeScript co…
qpd-v Jan 13, 2025
e8d640f
v0.2.3 - Updated deep research tool to convert HTML to markdown
qpd-v Jan 15, 2025
05d5498
v0.2.3 - Updated deep_researcj tool to convert HTML to MD
qpd-v Jan 15, 2025
27ec8e1
Merge branch 'main' of https://github.com/qpd-v/mcp-DEEPwebresearch
qpd-v Jan 15, 2025
69902e6
v0.2.4 - removed some files
qpd-v Jan 15, 2025
723e69c
v0.2.5 - Upgraded deep_research tool to provide better key insights; …
qpd-v Jan 15, 2025
9324f96
v0.2.6 - updated deep_research tool
qpd-v Jan 15, 2025
599ea55
v0.2.7 - chore: update version to v0.2.7; add new report files to .gi…
qpd-v Jan 15, 2025
ad7236d
v0.2.8: Optimize performance and timeout handling
qpd-v Jan 16, 2025
ea9f298
v0.2.9: Add visit_page tool back and optimize content extraction.
qpd-v Jan 16, 2025
c1c25c4
v0.3.0 - chore: update project name to mcp-deepwebresearch and versio…
qpd-v Jan 16, 2025
4181486
refactor: remove hardcoded credentials and add environment variable h…
qpd-v Feb 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
AWS_REGION=your-region-here
AWS_ACCESS_KEY_ID=your-access-key-here
AWS_SECRET_ACCESS_KEY=your-secret-key-here
117 changes: 52 additions & 65 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,74 +1,47 @@
# Logs
logs
*.log
# Environment variables
.env
.env.*
!.env.example

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Node
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz
# IDE
.idea/
.vscode/
*.swp
*.swo

# Project specific
chunks.json
summary_cache.json
*-FINAL-REPORT.txt
# Yarn Integrity file
.yarn-integrity

Expand Down Expand Up @@ -128,3 +101,17 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# Test files
test.html
test.ts
test.js
test.d.ts
test.js.map
parallel-report.txt
quantum-deep-research-report.txt
quantum-parallel-report.txt
deepresearch-report.txt

mcp-webresearch-original
TURTLE-SOUP.txt
Loading