# NotebookLM (remote · api.mcp.ai)

Google NotebookLM via natural language: create notebooks, add sources (PDF, URL, YouTube) and ask gr

- Trust score: 64/100 (medium)
- Change this week: +8
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `api.mcp.ai`: 64/100 (this document), [markdown](https://verifymcp.io/servers/mcp-dir-notebooklm-mcp/p-notebooklm.md), [page](https://verifymcp.io/servers/mcp-dir-notebooklm-mcp/p-notebooklm)

## Channel facts

- Endpoint: `https://api.mcp.ai/p_notebooklm`
- Transports: `streamable-http`
- Auth: `none`
- Version: `0.1.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 63/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - No authorisation is required to call this server. Every tool declares its destructiveHint and none is destructive, so open access doesn't expose one.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 64/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 3297 tokens (~76/item across 43 items; 43 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 67/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http mcp-dir-notebooklm-mcp https://api.mcp.ai/p_notebooklm
```

### Codex

```toml
[mcp_servers.mcp-dir-notebooklm-mcp]
url = "https://api.mcp.ai/p_notebooklm"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "mcp-dir-notebooklm-mcp": {
      "type": "remote",
      "url": "https://api.mcp.ai/p_notebooklm",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add mcp-dir-notebooklm-mcp --url https://api.mcp.ai/p_notebooklm --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  mcp-dir-notebooklm-mcp:
    url: "https://api.mcp.ai/p_notebooklm"
```

### Other

```json
{
  "mcpServers": {
    "mcp-dir-notebooklm-mcp": {
      "type": "http",
      "url": "https://api.mcp.ai/p_notebooklm"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 64, +1)

- [security] The server rewrote its instructions, which are the text every model session reads
- [functional] Server version: 0.9.200 → 0.9.201

### 2026-08-02 (score 63, 0)

- [security] The server rewrote its instructions, which are the text every model session reads
- [functional] Server version: 0.9.197 → 0.9.200

### 2026-08-01 (score 63, +2)

- [security] The server rewrote its instructions, which are the text every model session reads
- [security] Tool “marketplace” rewrote its description, which is the text the model reads
- [functional] Schema quality: fair → good
- [functional] Server version: 0.9.196 → 0.9.197

### 2026-07-31 (score 61, +3)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 58, +4)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 54, −3)

- [security regression] HSTS header: fail → unverified
- [security regression] Authorization: partial → unverified
- [security] The server rewrote its instructions, which are the text every model session reads
- [functional] Server version: 0.9.183 → 0.9.190

### 2026-07-28 (score 57, +1)

- [security] The server rewrote its instructions, which are the text every model session reads
- [functional] Server version: 0.9.179 → 0.9.183

### 2026-07-27 (score 56, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

## MCP tools (43)

### `notebooklm_list` (~34 tokens)

Lista os notebooks do usuário. Retorna [{ id, title, ... }] — use o `id` nas demais tools.

### `notebooklm_notebook_create` (~36 tokens)

Cria um notebook novo (vazio). Retorna o notebook com seu `id`.

Input parameters:

- `title` (string, required)

### `notebooklm_notebook_rename` (~53 tokens)

Renomeia um notebook.

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `new_title` (string, required)
- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_notebook_delete` (~47 tokens)

Apaga um notebook (irreversível).

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_notebook_summary` (~66 tokens)

Resumo do notebook com insights gerados por IA. `topics:true` inclui tópicos sugeridos.

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `notebook_id` (string, required)
- `notebook_ids` (array)
- `topics` (boolean)

### `notebooklm_notebook_metadata` (~48 tokens)

Metadados do notebook + lista de fontes.

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_ask` (~64 tokens)

Pergunta ao notebook; resposta FUNDAMENTADA nas fontes, com citações. Pode demorar.

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `notebook_id` (string, required)
- `notebook_ids` (array)
- `question` (string, required)

### `notebooklm_history` (~60 tokens)

Histórico de Q&A da conversa do notebook.

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `limit` (number)
- `notebook_id` (string, required)
- `notebook_ids` (array)
- `show_all` (boolean)

### `notebooklm_source_add` (~101 tokens)

Adiciona uma fonte ao notebook: URL (página/YouTube) ou texto. `type` é auto-detectado; use `type:"text"` + `title` para colar texto.

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `content` (string, required)
- `notebook_id` (string, required)
- `notebook_ids` (array)
- `title` (string)
- `type` (string)

### `notebooklm_source_list` (~53 tokens)

Lista as fontes do notebook. Retorna [{ id, title, ... }].

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_source_get` (~63 tokens)

Detalhes de uma fonte.

Bulk support: accepts notebook_ids, source_ids for batched execution.

Input parameters:

- `notebook_id` (string, required)
- `notebook_ids` (array)
- `source_id` (string, required)
- `source_ids` (array)

### `notebooklm_source_fulltext` (~72 tokens)

Texto completo indexado de uma fonte.

Bulk support: accepts notebook_ids, source_ids for batched execution.

Input parameters:

- `format` (string)
- `notebook_id` (string, required)
- `notebook_ids` (array)
- `source_id` (string, required)
- `source_ids` (array)

### `notebooklm_source_guide` (~71 tokens)

Resumo + palavras-chave de uma fonte (gerado por IA).

Bulk support: accepts notebook_ids, source_ids for batched execution.

Input parameters:

- `notebook_id` (string, required)
- `notebook_ids` (array)
- `source_id` (string, required)
- `source_ids` (array)

### `notebooklm_source_rename` (~71 tokens)

Renomeia uma fonte.

Bulk support: accepts notebook_ids, source_ids for batched execution.

Input parameters:

- `new_title` (string, required)
- `notebook_id` (string, required)
- `notebook_ids` (array)
- `source_id` (string, required)
- `source_ids` (array)

### `notebooklm_source_refresh` (~73 tokens)

Reprocessa uma fonte de URL/Drive (re-indexa o conteúdo atual).

Bulk support: accepts notebook_ids, source_ids for batched execution.

Input parameters:

- `notebook_id` (string, required)
- `notebook_ids` (array)
- `source_id` (string, required)
- `source_ids` (array)

### `notebooklm_source_delete` (~62 tokens)

Remove uma fonte do notebook.

Bulk support: accepts notebook_ids, source_ids for batched execution.

Input parameters:

- `notebook_id` (string, required)
- `notebook_ids` (array)
- `source_id` (string, required)
- `source_ids` (array)

### `notebooklm_source_add_research` (~85 tokens)

Pesquisa na web (ou Drive) e adiciona fontes a partir dos resultados.

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `from_source` (string)
- `import_all` (boolean)
- `mode` (string)
- `notebook_id` (string, required)
- `notebook_ids` (array)
- `query` (string, required)

### `notebooklm_generate` (~245 tokens)

Gera um artifact do notebook (assíncrono — retorna o artifact em geração). `kind`: audio (podcast), video, cinematic_video, slide_deck, report, mind_map, quiz, flashcards, infographic, data_table. `instructions` = foco/estilo. `options` = flags específicas do tipo (ex.: audio {format:deep-dive|brief|critique|debate, length:short|default|long}; video/cinematic_video {format:explainer|brief|cinematic, style:...}; slide_deck {format:detailed|presenter, length}; report {format:briefing-doc|study-guide|blog-post|custom}; quiz/flashcards {quantity:fewer|standard|more, difficulty:easy|medium|hard}; infographic {orientation, detail, style}; mind_map {kind:interactive|note-backed}). Acompanhe com notebooklm_artifact_list/get.

Input parameters:

- `instructions` (string)
- `kind` (string, required)
- `language` (string)
- `notebook_id` (string, required)
- `options` (object)
- `source_ids` (array)

### `notebooklm_artifact_list` (~81 tokens)

Lista os artifacts do notebook. `type` filtra (audio|video|slide-deck|quiz|flashcard|infographic|data-table|mind-map|report).

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `notebook_id` (string, required)
- `notebook_ids` (array)
- `type` (string)

### `notebooklm_artifact_get` (~65 tokens)

Detalhes/status de um artifact.

Bulk support: accepts notebook_ids, artifact_ids for batched execution.

Input parameters:

- `artifact_id` (string, required)
- `artifact_ids` (array)
- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_artifact_poll` (~69 tokens)

Aguarda/consulta o status de uma geração de artifact.

Bulk support: accepts notebook_ids, task_ids for batched execution.

Input parameters:

- `notebook_id` (string, required)
- `notebook_ids` (array)
- `task_id` (string, required)
- `task_ids` (array)

### `notebooklm_artifact_suggestions` (~48 tokens)

Sugestões de artifacts para o notebook.

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_artifact_rename` (~72 tokens)

Renomeia um artifact.

Bulk support: accepts notebook_ids, artifact_ids for batched execution.

Input parameters:

- `artifact_id` (string, required)
- `artifact_ids` (array)
- `new_title` (string, required)
- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_artifact_retry` (~69 tokens)

Re-tenta a geração de um artifact que falhou.

Bulk support: accepts notebook_ids, artifact_ids for batched execution.

Input parameters:

- `artifact_id` (string, required)
- `artifact_ids` (array)
- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_artifact_delete` (~62 tokens)

Apaga um artifact.

Bulk support: accepts notebook_ids, artifact_ids for batched execution.

Input parameters:

- `artifact_id` (string, required)
- `artifact_ids` (array)
- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_download` (~120 tokens)

Baixa o conteúdo de um artifact. Texto (report/mind_map/quiz/flashcards/data_table) retorna inline em `content`; binário (audio/video/slide_deck/infographic) retorna metadados + tamanho (entrega por URL é tratada à parte).

Bulk support: accepts notebook_ids, artifact_ids for batched execution.

Input parameters:

- `artifact_id` (string)
- `artifact_ids` (array)
- `kind` (string, required)
- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_note_create` (~58 tokens)

Cria uma nota no notebook.

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `content` (string, required)
- `notebook_id` (string, required)
- `notebook_ids` (array)
- `title` (string)

### `notebooklm_note_list` (~43 tokens)

Lista as notas do notebook.

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_note_get` (~62 tokens)

Conteúdo de uma nota.

Bulk support: accepts notebook_ids, note_ids for batched execution.

Input parameters:

- `note_id` (string, required)
- `note_ids` (array)
- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_note_rename` (~71 tokens)

Renomeia uma nota.

Bulk support: accepts notebook_ids, note_ids for batched execution.

Input parameters:

- `new_title` (string, required)
- `note_id` (string, required)
- `note_ids` (array)
- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_note_delete` (~61 tokens)

Apaga uma nota.

Bulk support: accepts notebook_ids, note_ids for batched execution.

Input parameters:

- `note_id` (string, required)
- `note_ids` (array)
- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_share_status` (~44 tokens)

Status de compartilhamento do notebook.

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_share_public` (~53 tokens)

Liga/desliga o link público do notebook.

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `enable` (boolean)
- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_share_add` (~70 tokens)

Compartilha o notebook com um email (editor/viewer).

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `email` (string, required)
- `message` (string)
- `notebook_id` (string, required)
- `notebook_ids` (array)
- `permission` (string)

### `notebooklm_share_update` (~61 tokens)

Atualiza a permissão de um colaborador.

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `email` (string, required)
- `notebook_id` (string, required)
- `notebook_ids` (array)
- `permission` (string)

### `notebooklm_share_remove` (~52 tokens)

Remove o acesso de um colaborador.

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `email` (string, required)
- `notebook_id` (string, required)
- `notebook_ids` (array)

### `notebooklm_share_view_level` (~67 tokens)

Define o nível de acesso do link público: full (notebook todo) ou chat (só chat).

Bulk support: accepts notebook_ids for batched execution.

Input parameters:

- `level` (string, required)
- `notebook_id` (string, required)
- `notebook_ids` (array)

### `show_version` (~17 tokens)

Show the current MCP platform and adapter versions.

### `report_bug` (~50 tokens)

Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.

Input parameters:

- `context` (string)
- `conversation` (string)
- `message` (string, required)

### `connect` (~42 tokens)

Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.

### `toolkit_info` (~30 tokens)

Returns the current toolkit state: installed MCPs, their connection status, and how many catalog tools each exposes.

### `marketplace` (~402 tokens)

The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin.

Input parameters:

- `action` (string)
- `arguments` (string)
- `cancel_comment` (string)
- `cancel_reason` (string)
- `conversation` (string)
- `immediate` (boolean)
- `limit` (number)
- `mcp_id` (string)
- `message` (string)
- `query` (string)
- `report_context` (string)
- `request_details` (string)
- `request_name` (string)
- `tier_slug` (string)
- `tool_id` (string)

### `authenticate` (~99 tokens)

MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header `Authorization: Bearer <token>` for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "<jwt>" } after the user pastes, or with no args to get the link.

Input parameters:

- `token` (string)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/mcp-dir-notebooklm-mcp/p-notebooklm#diagnostics

## Score history

- 2026-08-03: 64
- 2026-08-02: 63
- 2026-08-01: 63
- 2026-07-31: 61
- 2026-07-30: 58
- 2026-07-29: 54
- 2026-07-28: 57
- 2026-07-27: 56
- 2026-07-26: 56

## Links

- Remote endpoint: https://api.mcp.ai/p_notebooklm
- Repository: https://github.com/mcp-dir/notebooklm-mcp
- Changelog RSS feed: https://verifymcp.io/servers/mcp-dir-notebooklm-mcp/p-notebooklm/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/mcp-dir-notebooklm-mcp/p-notebooklm/changelog.json
- HTML version of this page: https://verifymcp.io/servers/mcp-dir-notebooklm-mcp/p-notebooklm
