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
verify-language.ps1•566 B
# Verify NotebookLM Language
# Opens browser to check if UI is in English
$body = @{
notebook_url = "https://notebooklm.google.com/notebook/725d28e1-4284-4f36-99a2-b6693c2ebf13"
question = "What is this notebook about?"
show_browser = $true
} | ConvertTo-Json
Write-Host "Opening NotebookLM to verify language..."
Write-Host "Check if the UI is in ENGLISH (buttons, menus, etc.)"
Write-Host ""
$response = Invoke-RestMethod -Uri "http://localhost:3000/ask" -Method POST -ContentType "application/json" -Body $body
$response | ConvertTo-Json -Depth 10