You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running cognee-cli -ui with cognee v0.5.5 (pip) results in a 500 error on every frontend request. The Next.js dev server fails to compile because three npm packages are imported in source files but not declared in cognee-frontend/package.json.
pip install cognee==0.5.5
cognee-cli -ui
# Backend starts on :8000 ✓# MCP starts on :8001 ✓# Frontend assets downloaded from GitHub release v0.5.5 ✓# npm install runs ✓# Next.js starts on :3000 ✓# First page load → 500 ✗
Error output
[FRONTEND] ⨯ ./src/ui/elements/Notebook/MarkdownPreview.tsx:2:1
Module not found: Can't resolve 'react-markdown'
Environment
cognee 0.5.5 (pip)
Python 3.12.12
Linux 6.17.0-19-generic (Ubuntu 24.04)
Next.js 16.1.6 (Turbopack)
Notes
On current main branch, react-markdown appears to be declared in cognee-frontend/package.json, suggesting the v0.5.5 release tag was cut before this fix landed.
On Linux without Docker Desktop, host.docker.internal doesn't resolve — the MCP startup log warns about this but the CLI doesn't add --add-host host.docker.internal:host-gateway automatically.
Summary
Running
cognee-cli -uiwith cognee v0.5.5 (pip) results in a 500 error on every frontend request. The Next.js dev server fails to compile because three npm packages are imported in source files but not declared incognee-frontend/package.json.Missing dependencies
react-markdownsrc/ui/elements/Notebook/MarkdownPreview.tsxngraph.graphsrc/ui/rendering/animate.ts,src/ui/rendering/graph/createGraph.tsngraph.forcelayoutsrc/ui/rendering/animate.tsSteps to reproduce
Error output
Environment
Notes
mainbranch,react-markdownappears to be declared incognee-frontend/package.json, suggesting the v0.5.5 release tag was cut before this fix landed.cognee-mcp:mainDocker image reportscognee_version=0.5.2while the pip package is 0.5.5 (related: [Bug]: s3fs module is missing from Cognee MCP Docker image #1681).host.docker.internaldoesn't resolve — the MCP startup log warns about this but the CLI doesn't add--add-host host.docker.internal:host-gatewayautomatically.Workaround
Then restart
cognee-cli -ui.