├── .env ├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── enhanced_graph_demo.py ├── gemini-fullstack-langgraph-quickstart.code-workspace ├── langgraph.json ├── pyproject.toml ├── src ├── __pycache__ │ ├── async_task_client.cpython-313.pyc │ ├── async_task_server.cpython-313.pyc │ └── research_task_server.cpython-313.pyc ├── agent │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-313.pyc │ │ ├── configuration.cpython-313.pyc │ │ ├── graph.cpython-313.pyc │ │ ├── prompts.cpython-313.pyc │ │ ├── search_tools.cpython-313.pyc │ │ ├── state.cpython-313.pyc │ │ ├── tools_and_schemas.cpython-313.pyc │ │ └── utils.cpython-313.pyc │ ├── configuration.py │ ├── graph.py │ ├── prompts.py │ ├── search_tools.py │ ├── state.py │ ├── tools_and_schemas.py │ └── utils.py ├── mcp_deepresearch.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── requires.txt │ └── top_level.txt ├── research_task_client.py └── research_task_server.py └── uv.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/.env -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /enhanced_graph_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/enhanced_graph_demo.py -------------------------------------------------------------------------------- /gemini-fullstack-langgraph-quickstart.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/gemini-fullstack-langgraph-quickstart.code-workspace -------------------------------------------------------------------------------- /langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/langgraph.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/__pycache__/async_task_client.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/__pycache__/async_task_client.cpython-313.pyc -------------------------------------------------------------------------------- /src/__pycache__/async_task_server.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/__pycache__/async_task_server.cpython-313.pyc -------------------------------------------------------------------------------- /src/__pycache__/research_task_server.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/__pycache__/research_task_server.cpython-313.pyc -------------------------------------------------------------------------------- /src/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/__init__.py -------------------------------------------------------------------------------- /src/agent/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /src/agent/__pycache__/configuration.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/__pycache__/configuration.cpython-313.pyc -------------------------------------------------------------------------------- /src/agent/__pycache__/graph.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/__pycache__/graph.cpython-313.pyc -------------------------------------------------------------------------------- /src/agent/__pycache__/prompts.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/__pycache__/prompts.cpython-313.pyc -------------------------------------------------------------------------------- /src/agent/__pycache__/search_tools.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/__pycache__/search_tools.cpython-313.pyc -------------------------------------------------------------------------------- /src/agent/__pycache__/state.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/__pycache__/state.cpython-313.pyc -------------------------------------------------------------------------------- /src/agent/__pycache__/tools_and_schemas.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/__pycache__/tools_and_schemas.cpython-313.pyc -------------------------------------------------------------------------------- /src/agent/__pycache__/utils.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/__pycache__/utils.cpython-313.pyc -------------------------------------------------------------------------------- /src/agent/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/configuration.py -------------------------------------------------------------------------------- /src/agent/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/graph.py -------------------------------------------------------------------------------- /src/agent/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/prompts.py -------------------------------------------------------------------------------- /src/agent/search_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/search_tools.py -------------------------------------------------------------------------------- /src/agent/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/state.py -------------------------------------------------------------------------------- /src/agent/tools_and_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/tools_and_schemas.py -------------------------------------------------------------------------------- /src/agent/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/agent/utils.py -------------------------------------------------------------------------------- /src/mcp_deepresearch.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/mcp_deepresearch.egg-info/PKG-INFO -------------------------------------------------------------------------------- /src/mcp_deepresearch.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/mcp_deepresearch.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /src/mcp_deepresearch.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mcp_deepresearch.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/mcp_deepresearch.egg-info/requires.txt -------------------------------------------------------------------------------- /src/mcp_deepresearch.egg-info/top_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/mcp_deepresearch.egg-info/top_level.txt -------------------------------------------------------------------------------- /src/research_task_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/research_task_client.py -------------------------------------------------------------------------------- /src/research_task_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/src/research_task_server.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingcy/mcp-deepresearch/HEAD/uv.lock --------------------------------------------------------------------------------