├── .env.example ├── .gitignore ├── .runtime ├── .gitignore ├── README.md ├── bun.lock ├── index.ts ├── package.json ├── pyproject.toml ├── src │ ├── services │ │ ├── browserService.ts │ │ ├── fileService.ts │ │ └── shellService.ts │ └── types │ │ └── index.ts ├── templates │ └── nextjs │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ │ ├── bun.lock │ │ ├── components.json │ │ ├── components │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── aspect-ratio.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── carousel.tsx │ │ │ ├── chart.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input-otp.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── resizable.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ └── tooltip.tsx │ │ ├── eslint.config.mjs │ │ ├── hooks │ │ └── use-mobile.ts │ │ ├── lib │ │ └── utils.ts │ │ ├── next.config.ts │ │ ├── package.json │ │ ├── postcss.config.mjs │ │ ├── public │ │ ├── file.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ │ └── tsconfig.json ├── tsconfig.json └── uv.lock ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── flow.json ├── langgraphjs ├── .gitkeep ├── agents │ └── agentic │ │ ├── drizzleSaver.ts │ │ ├── index.ts │ │ ├── model.ts │ │ ├── prompts.ts │ │ ├── state.ts │ │ ├── supervisor.ts │ │ ├── tools.ts │ │ ├── types.ts │ │ └── workers │ │ ├── browser-worker.ts │ │ ├── fs-worker.ts │ │ ├── index.ts │ │ ├── kb-worker.ts │ │ └── shell-worker.ts └── db │ ├── index.ts │ └── schema.ts ├── langgraphpy └── .gitkeep ├── litellm.yml ├── pytools ├── .dockerignore ├── .env.example ├── .gitignore ├── .python-version ├── Dockerfile ├── README.md ├── docker-compose.yml ├── flowise.sh ├── flows │ ├── v2.2 Agents.json │ └── v2.3 Agents.json ├── litellm.yml ├── pyproject.toml ├── src │ └── manusmcp │ │ ├── __init__.py │ │ ├── config.py │ │ ├── old.txt │ │ └── tools.py └── uv.lock └── site ├── .env.example ├── .gitignore ├── README.md ├── docker-compose.yml ├── drizzle.config.ts ├── eslint.config.js ├── litellm.yml ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── prettier.config.js ├── public └── favicon.ico ├── scripts └── push-db.js ├── src ├── app │ ├── _components │ │ ├── chat │ │ │ ├── chat-input-container.tsx │ │ │ ├── chat-input.tsx │ │ │ ├── message-list.tsx │ │ │ ├── message.tsx │ │ │ └── thread-list.tsx │ │ ├── post.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── input.tsx │ │ │ └── textarea.tsx │ ├── api │ │ └── trpc │ │ │ └── [trpc] │ │ │ └── route.ts │ ├── chat │ │ ├── [threadId] │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── layout.tsx │ └── page.tsx ├── env.js ├── lib │ └── utils.ts ├── server │ ├── agent │ │ ├── fileWorker.ts │ │ ├── index.ts │ │ ├── kbWorker.ts │ │ ├── model.ts │ │ ├── supervisor.ts │ │ └── tools │ │ │ ├── browserService.ts │ │ │ ├── fileService.ts │ │ │ ├── index.ts │ │ │ └── shellService.ts │ ├── api │ │ ├── root.ts │ │ ├── routers │ │ │ ├── chat.ts │ │ │ └── post.ts │ │ └── trpc.ts │ └── db │ │ ├── index.ts │ │ └── schema.ts ├── styles │ └── globals.css └── trpc │ ├── query-client.ts │ ├── react.tsx │ └── server.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__ 3 | .flowise 4 | -------------------------------------------------------------------------------- /.runtime/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/.gitignore -------------------------------------------------------------------------------- /.runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/README.md -------------------------------------------------------------------------------- /.runtime/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/bun.lock -------------------------------------------------------------------------------- /.runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/index.ts -------------------------------------------------------------------------------- /.runtime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/package.json -------------------------------------------------------------------------------- /.runtime/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/pyproject.toml -------------------------------------------------------------------------------- /.runtime/src/services/browserService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/src/services/browserService.ts -------------------------------------------------------------------------------- /.runtime/src/services/fileService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/src/services/fileService.ts -------------------------------------------------------------------------------- /.runtime/src/services/shellService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/src/services/shellService.ts -------------------------------------------------------------------------------- /.runtime/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/src/types/index.ts -------------------------------------------------------------------------------- /.runtime/templates/nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/.gitignore -------------------------------------------------------------------------------- /.runtime/templates/nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/README.md -------------------------------------------------------------------------------- /.runtime/templates/nextjs/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/app/favicon.ico -------------------------------------------------------------------------------- /.runtime/templates/nextjs/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/app/globals.css -------------------------------------------------------------------------------- /.runtime/templates/nextjs/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/app/layout.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/app/page.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/bun.lock -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components.json -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/accordion.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/alert.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/avatar.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/badge.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/button.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/calendar.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/card.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/carousel.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/chart.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/command.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/dialog.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/drawer.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/form.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/input.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/label.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/menubar.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/pagination.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/popover.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/progress.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/resizable.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/select.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/separator.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/sheet.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/slider.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/sonner.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/switch.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/table.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/tabs.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/textarea.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/toggle.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /.runtime/templates/nextjs/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/eslint.config.mjs -------------------------------------------------------------------------------- /.runtime/templates/nextjs/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/hooks/use-mobile.ts -------------------------------------------------------------------------------- /.runtime/templates/nextjs/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/lib/utils.ts -------------------------------------------------------------------------------- /.runtime/templates/nextjs/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/next.config.ts -------------------------------------------------------------------------------- /.runtime/templates/nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/package.json -------------------------------------------------------------------------------- /.runtime/templates/nextjs/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/postcss.config.mjs -------------------------------------------------------------------------------- /.runtime/templates/nextjs/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/public/file.svg -------------------------------------------------------------------------------- /.runtime/templates/nextjs/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/public/globe.svg -------------------------------------------------------------------------------- /.runtime/templates/nextjs/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/public/next.svg -------------------------------------------------------------------------------- /.runtime/templates/nextjs/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/public/vercel.svg -------------------------------------------------------------------------------- /.runtime/templates/nextjs/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/public/window.svg -------------------------------------------------------------------------------- /.runtime/templates/nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/templates/nextjs/tsconfig.json -------------------------------------------------------------------------------- /.runtime/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/tsconfig.json -------------------------------------------------------------------------------- /.runtime/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/.runtime/uv.lock -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/flow.json -------------------------------------------------------------------------------- /langgraphjs/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /langgraphjs/agents/agentic/drizzleSaver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/agents/agentic/drizzleSaver.ts -------------------------------------------------------------------------------- /langgraphjs/agents/agentic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/agents/agentic/index.ts -------------------------------------------------------------------------------- /langgraphjs/agents/agentic/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/agents/agentic/model.ts -------------------------------------------------------------------------------- /langgraphjs/agents/agentic/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/agents/agentic/prompts.ts -------------------------------------------------------------------------------- /langgraphjs/agents/agentic/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/agents/agentic/state.ts -------------------------------------------------------------------------------- /langgraphjs/agents/agentic/supervisor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/agents/agentic/supervisor.ts -------------------------------------------------------------------------------- /langgraphjs/agents/agentic/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/agents/agentic/tools.ts -------------------------------------------------------------------------------- /langgraphjs/agents/agentic/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/agents/agentic/types.ts -------------------------------------------------------------------------------- /langgraphjs/agents/agentic/workers/browser-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/agents/agentic/workers/browser-worker.ts -------------------------------------------------------------------------------- /langgraphjs/agents/agentic/workers/fs-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/agents/agentic/workers/fs-worker.ts -------------------------------------------------------------------------------- /langgraphjs/agents/agentic/workers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/agents/agentic/workers/index.ts -------------------------------------------------------------------------------- /langgraphjs/agents/agentic/workers/kb-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/agents/agentic/workers/kb-worker.ts -------------------------------------------------------------------------------- /langgraphjs/agents/agentic/workers/shell-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/agents/agentic/workers/shell-worker.ts -------------------------------------------------------------------------------- /langgraphjs/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/db/index.ts -------------------------------------------------------------------------------- /langgraphjs/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/langgraphjs/db/schema.ts -------------------------------------------------------------------------------- /langgraphpy/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /litellm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/litellm.yml -------------------------------------------------------------------------------- /pytools/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/.dockerignore -------------------------------------------------------------------------------- /pytools/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/.env.example -------------------------------------------------------------------------------- /pytools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/.gitignore -------------------------------------------------------------------------------- /pytools/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /pytools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/Dockerfile -------------------------------------------------------------------------------- /pytools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/README.md -------------------------------------------------------------------------------- /pytools/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/docker-compose.yml -------------------------------------------------------------------------------- /pytools/flowise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/flowise.sh -------------------------------------------------------------------------------- /pytools/flows/v2.2 Agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/flows/v2.2 Agents.json -------------------------------------------------------------------------------- /pytools/flows/v2.3 Agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/flows/v2.3 Agents.json -------------------------------------------------------------------------------- /pytools/litellm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/litellm.yml -------------------------------------------------------------------------------- /pytools/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/pyproject.toml -------------------------------------------------------------------------------- /pytools/src/manusmcp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/src/manusmcp/__init__.py -------------------------------------------------------------------------------- /pytools/src/manusmcp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/src/manusmcp/config.py -------------------------------------------------------------------------------- /pytools/src/manusmcp/old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/src/manusmcp/old.txt -------------------------------------------------------------------------------- /pytools/src/manusmcp/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/src/manusmcp/tools.py -------------------------------------------------------------------------------- /pytools/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/pytools/uv.lock -------------------------------------------------------------------------------- /site/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/.env.example -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/.gitignore -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/README.md -------------------------------------------------------------------------------- /site/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/docker-compose.yml -------------------------------------------------------------------------------- /site/drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/drizzle.config.ts -------------------------------------------------------------------------------- /site/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/eslint.config.js -------------------------------------------------------------------------------- /site/litellm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/litellm.yml -------------------------------------------------------------------------------- /site/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/next.config.js -------------------------------------------------------------------------------- /site/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/package-lock.json -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/package.json -------------------------------------------------------------------------------- /site/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/postcss.config.js -------------------------------------------------------------------------------- /site/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/prettier.config.js -------------------------------------------------------------------------------- /site/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/public/favicon.ico -------------------------------------------------------------------------------- /site/scripts/push-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/scripts/push-db.js -------------------------------------------------------------------------------- /site/src/app/_components/chat/chat-input-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/app/_components/chat/chat-input-container.tsx -------------------------------------------------------------------------------- /site/src/app/_components/chat/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/app/_components/chat/chat-input.tsx -------------------------------------------------------------------------------- /site/src/app/_components/chat/message-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/app/_components/chat/message-list.tsx -------------------------------------------------------------------------------- /site/src/app/_components/chat/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/app/_components/chat/message.tsx -------------------------------------------------------------------------------- /site/src/app/_components/chat/thread-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/app/_components/chat/thread-list.tsx -------------------------------------------------------------------------------- /site/src/app/_components/post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/app/_components/post.tsx -------------------------------------------------------------------------------- /site/src/app/_components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/app/_components/ui/button.tsx -------------------------------------------------------------------------------- /site/src/app/_components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/app/_components/ui/input.tsx -------------------------------------------------------------------------------- /site/src/app/_components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/app/_components/ui/textarea.tsx -------------------------------------------------------------------------------- /site/src/app/api/trpc/[trpc]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/app/api/trpc/[trpc]/route.ts -------------------------------------------------------------------------------- /site/src/app/chat/[threadId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/app/chat/[threadId]/page.tsx -------------------------------------------------------------------------------- /site/src/app/chat/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/app/chat/layout.tsx -------------------------------------------------------------------------------- /site/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/app/layout.tsx -------------------------------------------------------------------------------- /site/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/app/page.tsx -------------------------------------------------------------------------------- /site/src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/env.js -------------------------------------------------------------------------------- /site/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/lib/utils.ts -------------------------------------------------------------------------------- /site/src/server/agent/fileWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/agent/fileWorker.ts -------------------------------------------------------------------------------- /site/src/server/agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/agent/index.ts -------------------------------------------------------------------------------- /site/src/server/agent/kbWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/agent/kbWorker.ts -------------------------------------------------------------------------------- /site/src/server/agent/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/agent/model.ts -------------------------------------------------------------------------------- /site/src/server/agent/supervisor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/agent/supervisor.ts -------------------------------------------------------------------------------- /site/src/server/agent/tools/browserService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/agent/tools/browserService.ts -------------------------------------------------------------------------------- /site/src/server/agent/tools/fileService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/agent/tools/fileService.ts -------------------------------------------------------------------------------- /site/src/server/agent/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/agent/tools/index.ts -------------------------------------------------------------------------------- /site/src/server/agent/tools/shellService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/agent/tools/shellService.ts -------------------------------------------------------------------------------- /site/src/server/api/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/api/root.ts -------------------------------------------------------------------------------- /site/src/server/api/routers/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/api/routers/chat.ts -------------------------------------------------------------------------------- /site/src/server/api/routers/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/api/routers/post.ts -------------------------------------------------------------------------------- /site/src/server/api/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/api/trpc.ts -------------------------------------------------------------------------------- /site/src/server/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/db/index.ts -------------------------------------------------------------------------------- /site/src/server/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/server/db/schema.ts -------------------------------------------------------------------------------- /site/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/styles/globals.css -------------------------------------------------------------------------------- /site/src/trpc/query-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/trpc/query-client.ts -------------------------------------------------------------------------------- /site/src/trpc/react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/trpc/react.tsx -------------------------------------------------------------------------------- /site/src/trpc/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/src/trpc/server.ts -------------------------------------------------------------------------------- /site/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantrakp04/manusmcp/HEAD/site/tsconfig.json --------------------------------------------------------------------------------