CloudNerve Dashboard connects your research, links, and AI sessions into organized workspaces — with built-in NotebookLM integration for RAG-powered Q&A across everything you save.
Query your workspace through a linked Google NotebookLM notebook. Ask questions and get AI-grounded answers from your saved sources.
Push individual links or entire categories to NotebookLM as sources. Smart detection auto-converts GCS files and markdown to text.
Separate workspaces for different projects, each linked to its own NotebookLM notebook. Real-time sync across all devices via Firestore.
Import from Google Keep (JSON with label deep-links), Chrome bookmarks, JSON/Markdown files, or let AI categorize and suggest organization.
Any MCP-compatible AI (Claude, Antigravity) can add links and log sessions via the Model Context Protocol. Fully automated.
Antigravity AI sessions auto-capture to Cloud Storage as shareable Markdown. Restore accidentally deleted sessions from GCS backups.
Create a workspace and link it to a NotebookLM notebook. Paste your browser session cookies in Settings to enable the bridge.
Import sources from Keep, bookmarks, or AI sessions. Push links individually or by category to NotebookLM as sources.
Use RAG Chat to ask questions across all your sources. Save insights and AI answers back into workspace categories.
Automate your workflow with the REST API or let AI assistants manage your workspace via the Model Context Protocol.
// AI agent call via MCP
{
"tool": "add_to_dashboard",
"arguments": {
"url": "https://docs.example.com/api",
"title": "API Documentation",
"category": "Backend",
"notes": "Auth flow reference"
}
}// Auto-capture AI sessions
{
"tool": "log_session",
"arguments": {
"title": "Sprint 9 Implementation",
"notes": "Added per-link push...",
"project": "CloudNerve Dashboard",
"conversationId": "bc740516-..."
}
}curl -X POST \
$API_URL/api/notebooklm/sources/add \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"notebookId": "notebook-abc",
"url": "https://example.com/docs"
}'curl -X PUT \
$API_URL/api/workspace \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"categories": [{
"categoryName": "Tools",
"links": [{ "title": "...", "url": "..." }]
}]
}'