Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Interact with Google NotebookLM via CLI (nlm). Use this when the user wants to manage notebooks, add sources, generate audio podcasts, research topics, query notebooks, or share content. --- name: notebooklm description: Interact with Google NotebookLM via CLI (nlm). Use this when the user wants to manage notebooks, add sources, generate audio podcasts, research topics, query notebooks, or share content. --- NotebookLM Antigravity Skill This skill provides seamless integration with Google NotebookLM through the nlm command-line interface. It enables you to create notebooks, add sources from URLs, tex Capability contract not published. No trust telemetry is available yet. 9 GitHub stars reported by the source. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
notebooklm is best for use workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Interact with Google NotebookLM via CLI (nlm). Use this when the user wants to manage notebooks, add sources, generate audio podcasts, research topics, query notebooks, or share content. --- name: notebooklm description: Interact with Google NotebookLM via CLI (nlm). Use this when the user wants to manage notebooks, add sources, generate audio podcasts, research topics, query notebooks, or share content. --- NotebookLM Antigravity Skill This skill provides seamless integration with Google NotebookLM through the nlm command-line interface. It enables you to create notebooks, add sources from URLs, tex
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. 9 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Apr 15, 2026
Vendor
Junsuzuki1973
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 9 GitHub stars reported by the source. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/JunSuzuki1973/notebooklm-antigravity-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Junsuzuki1973
Protocol compatibility
MCP
Adoption signal
9 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
bash scripts/install.sh
bash
nlm --version
bash
nlm login
bash
nlm login --check
bash
nlm login --profile work nlm login --profile personal
bash
# List all notebooks nlm notebook list # Create a new notebook nlm notebook create "Research Project" # Get notebook details nlm notebook get <notebook-id>
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Interact with Google NotebookLM via CLI (nlm). Use this when the user wants to manage notebooks, add sources, generate audio podcasts, research topics, query notebooks, or share content. --- name: notebooklm description: Interact with Google NotebookLM via CLI (nlm). Use this when the user wants to manage notebooks, add sources, generate audio podcasts, research topics, query notebooks, or share content. --- NotebookLM Antigravity Skill This skill provides seamless integration with Google NotebookLM through the nlm command-line interface. It enables you to create notebooks, add sources from URLs, tex
This skill provides seamless integration with Google NotebookLM through the nlm command-line interface. It enables you to create notebooks, add sources from URLs, text, files, or Google Drive, generate AI-powered audio podcasts, perform web research, and query your notebooks with natural language.
To enable Google NotebookLM functionality within Antigravity for research, content generation, and knowledge management tasks.
Before using NotebookLM, run the installation script to set up the nlm CLI:
bash scripts/install.sh
This will install notebooklm-mcp-cli using uv (recommended) or pip as a fallback.
After installation, verify it's available:
nlm --version
You must authenticate with your Google account before using NotebookLM:
Auto Mode (Recommended):
nlm login
This launches a dedicated Chrome profile. Log in to Google, and cookies will be extracted automatically.
Check Authentication Status:
nlm login --check
Use Multiple Profiles:
nlm login --profile work
nlm login --profile personal
Once authenticated, you can use any of these commands directly in the terminal:
# List all notebooks
nlm notebook list
# Create a new notebook
nlm notebook create "Research Project"
# Get notebook details
nlm notebook get <notebook-id>
# Add URL source
nlm source add <notebook-id> --url "https://example.com/article"
# Add YouTube video
nlm source add <notebook-id> --url "https://youtube.com/watch?v=xxx"
# Add text directly
nlm source add <notebook-id> --text "Your text content here"
# Add local file
nlm source add <notebook-id> --file /path/to/file.pdf
# Import from Google Drive
nlm source add <notebook-id> --drive "document-id"
# Ask questions about your notebook
nlm notebook query <notebook-id> "What are the key findings?"
# Generate summary
nlm notebook query <notebook-id> "Summarize all sources"
# Generate audio overview
nlm audio create <notebook-id> --confirm
# Download generated audio
nlm download audio <notebook-id> <artifact-id>
# Download as MP3
nlm download audio <notebook-id> <artifact-id> --format mp3
# Generate video explainer
nlm studio create <notebook-id> --type video --style classic
# Generate briefing document
nlm studio create <notebook-id> --type briefing
# Generate flashcards
nlm studio create <notebook-id> --type flashcard --difficulty medium
# Generate infographic
nlm studio create <notebook-id> --type infographic --orientation landscape
# Generate mind map
nlm studio create <notebook-id> --type mindmap
# Generate slide deck
nlm studio create <notebook-id> --type slideshow
# Start web research on a topic
nlm research start "enterprise AI ROI metrics"
# Deep research with auto-import
nlm research start "cloud marketplace trends" --deep --import
# Make notebook public
nlm share public <notebook-id>
# Disable public access
nlm share disable <notebook-id>
# Invite collaborators
nlm share invite <notebook-id> --email user@example.com --role editor
# Sync all Drive sources
nlm source sync drive <notebook-id>
# Check which sources need sync
nlm source list <notebook-id>
After generating studio content (audio, video, etc.), check the status:
# List all studio artifacts
nlm studio list <notebook-id>
# Get status of specific artifact
nlm studio status <notebook-id> <artifact-id>
Poll the status until it shows "completed", then download using the download command.
Example 1: Research and Generate Podcast
# Create notebook for research
NOTEBOOK_ID=$(nlm notebook create "AI Research 2026" | grep -oP 'id: \K\S+')
# Add several sources
nlm source add "$NOTEBOOK_ID" --url "https://arxiv.org/abs/2301.07041"
nlm source add "$NOTEBOOK_ID" --url "https://example.com/ai-report"
# Generate audio podcast
nlm audio create "$NOTEBOOK_ID" --confirm
# Wait and download
nlm download audio "$NOTEBOOK_ID" <artifact-id>
Example 2: Quick URL Analysis
# Create notebook, add URL, and query in one flow
NOTEBOOK_ID=$(nlm notebook create "Quick Analysis" | grep -oP 'id: \K\S+')
nlm source add "$NOTEBOOK_ID" --url "https://example.com/article"
nlm notebook query "$NOTEBOOK_ID" "Summarize the main arguments in 3 bullet points"
Example 3: File-Based Research
# Add local PDF and query
nlm notebook create "Document Review"
nlm source add <notebook-id> --file /path/to/report.pdf
nlm notebook query <notebook-id> "What are the key recommendations?"
Example 4: Web Research with Auto-Import
# Research and automatically import top sources
nlm research start "AI agents productivity metrics" --deep --import
# This will create a notebook and import the best sources found
IMPORTANT:
nlm login --check to verify authentication statusnlm login when promptedSafety:
nlm login commandInstallation Issues:
# Force reinstall if needed
uv tool install --force notebooklm-mcp-cli
Authentication Failures:
# Remove old auth data and re-login
rm -rf ~/.notebooklm-mcp-cli
nlm login
Command Not Found:
# Verify installation
which nlm
# If not found, run install.sh again
Token Expiration:
# Refresh auth
nlm login
Profile Management:
# List all profiles with emails
nlm login profile list
# Switch profiles
nlm login switch work
# Delete a profile
nlm login profile delete work
Using uvx (No Install Required):
# Run nlm without installing
uvx --from notebooklm-mcp-cli nlm notebook list
For complete command reference and advanced features, see:
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/junsuzuki1973-notebooklm-antigravity-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/junsuzuki1973-notebooklm-antigravity-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/junsuzuki1973-notebooklm-antigravity-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/junsuzuki1973-notebooklm-antigravity-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/junsuzuki1973-notebooklm-antigravity-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/junsuzuki1973-notebooklm-antigravity-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/junsuzuki1973-notebooklm-antigravity-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/junsuzuki1973-notebooklm-antigravity-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/junsuzuki1973-notebooklm-antigravity-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:45:39.713Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "use",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:use|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Junsuzuki1973",
"href": "https://github.com/JunSuzuki1973/notebooklm-antigravity-skill",
"sourceUrl": "https://github.com/JunSuzuki1973/notebooklm-antigravity-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T01:15:50.246Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/junsuzuki1973-notebooklm-antigravity-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/junsuzuki1973-notebooklm-antigravity-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T01:15:50.246Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "9 GitHub stars",
"href": "https://github.com/JunSuzuki1973/notebooklm-antigravity-skill",
"sourceUrl": "https://github.com/JunSuzuki1973/notebooklm-antigravity-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T01:15:50.246Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/junsuzuki1973-notebooklm-antigravity-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/junsuzuki1973-notebooklm-antigravity-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to notebooklm and adjacent AI workflows.