We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/roomi-fields/notebooklm-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
capture-screen.ps1•588 B
# Just activate notebook and get content to take screenshot
Write-Host "Activating notebook-1..."
$response = Invoke-RestMethod -Uri "http://localhost:3000/notebooks/notebook-1/activate" -Method PUT
Write-Host "Activated"
# The server should have taken debug screenshots - check the data folder
Write-Host "`nChecking for debug screenshots..."
$debugPath = "C:\Users\romai\AppData\Local\notebooklm-mcp\Data"
Get-ChildItem $debugPath -Filter "*.png" | Sort-Object LastWriteTime -Descending | Select-Object -First 5 | ForEach-Object {
Write-Host " $($_.Name) - $($_.LastWriteTime)"
}