npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

notebooklm-mcp-skill-setup

v1.0.6

Published

Integra NotebookLM con agentes de IA usando MCP. Instalador interactivo.

Downloads

699

Readme

Skill Conector NotebookLM MCP

Este repositorio contiene el Skill Conector para NotebookLM MCP, una guía completa y herramienta para instalar, configurar y autenticar el servidor MCP de NotebookLM en tus agentes de IA (como Claude, Cursor, o Antigravity).

¿Qué es esto?

Este es un paquete npm que instala un archivo de "Skill" (SKILL.md) en tu entorno de agente. Este archivo proporciona al agente el conocimiento necesario para configurar el servidor NotebookLM MCP Server.

Instalación

Opción 1: Instalación con npm/npx (Recomendado)

Instalación Global:

npm install -g notebooklm-mcp-skill-setup

Luego ejecuta el instalador interactivo:

notebooklm

O sin instalar globalmente (usando npx):

npx notebooklm-mcp-skill-setup

El asistente te guiará a través del proceso y te preguntará si deseas instalar el skill a nivel de Proyecto o Global.

Opción 2: Instalación con curl (Sin npm)

Para usuarios que no tienen Node.js/npm instalado.

En Linux/macOS (bash):

mkdir -p ~/.agent/skills/notebooklm-mcp
curl -o ~/.agent/skills/notebooklm-mcp/SKILL.md \
  https://raw.githubusercontent.com/tu-usuario/notebooklm-mcp-skill-setup/main/SKILL.md

En Windows (PowerShell):

$path = "$($env:USERPROFILE)\.agent\skills\notebooklm-mcp"
New-Item -ItemType Directory -Force -Path $path
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/ANONIMO432HZ/notebooklm-mcp-skill-setup/main/SKILL.md" `
  -OutFile "$path\SKILL.md"

Nota: Reemplaza tu-usuario con el usuario de GitHub donde está alojado el repositorio.

Opción 3: Instalación Manual

  1. Descarga el archivo SKILL.md desde este repositorio.
  2. Colócalo en: ~/.agent/skills/notebooklm-mcp/SKILL.md (global) o ./.agent/skills/notebooklm-mcp/SKILL.md (proyecto)
  3. Recarga tu agente.

Desinstalación

Desinstalar el paquete npm

Si deseas desinstalar completamente el paquete:

npm uninstall -g notebooklm-mcp-skill-setup

O si lo instalaste con npx (no requiere desinstalación adicional).

Desinstalar el skill del agente

Puedes desinstalar el skill de tu entorno ejecutando:

notebooklm

Y selecciona la opción 2. Desinstalar Skill en el menú interactivo. Elige si deseas eliminarlo del nivel de Proyecto o Global.

Uso

Una vez instalado, tu agente sabrá cómo:

  1. Instalar el paquete Python notebooklm-mcp-server.
  2. Configurar tu archivo mcp_config.json.
  3. Autenticarse con Google NotebookLM (incluyendo solución de problemas comunes).

Requisitos

  • Node.js: Para ejecutar el instalador npx.
  • Python 3.10+: Para el servidor MCP que el agente instalará.
  • Un Agente de IA o Cliente MCP compatible.

Metadatos para GitHub

Si estás alojando esto en GitHub, puedes usar los siguientes detalles:

Descripción:

Integra NotebookLM con tu agente de IA usando el protocolo MCP. Incluye instalación interactiva y guías de configuración en español.

Topics: mcp-server, notebooklm, ai-agent, mcp-skill, python, rag, llm-tools, google-notebooklm, spanish

Licencia

MIT