Skip to content
Open
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion server.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async def list_notebooks():
"""List all notebooks in your NotebookLM account."""
client = await get_client()
notebooks = await client.notebooks.list()
return [{"id": nb.id, "title": nb.title, "source_count": nb.source_count} for nb in notebooks]
return [{"id": nb.id, "title": nb.title, "sources_count": nb.sources_count} for nb in notebooks]

@mcp.tool()
async def create_notebook(title: str):
Expand Down