CtrlK
BlogDocsLog inGet started
Tessl Logo

giuseppe-trisciuoglio/developer-kit

Comprehensive developer toolkit providing reusable skills for Java/Spring Boot, TypeScript/NestJS/React/Next.js, Python, PHP, AWS CloudFormation, AI/RAG, DevOps, and more.

90

Quality

90%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

Risky

Do not use without reviewing

This version of the tile failed moderation
Moderation pipeline encountered an internal error
Overview
Quality
Evals
Security
Files

wrap-notebooklm-mcp.shplugins/developer-kit-tools/scripts/

#!/bin/bash
# Wrapper for NotebookLM MCP server
# Checks if uvx is available before starting the server

set -e

# Check if uvx is installed
if ! command -v uvx &> /dev/null; then
    echo "[NotebookLM MCP] ERROR: uvx is not installed. NotebookLM MCP requires uvx (from uv)." >&2
    echo "[NotebookLM MCP] Please install uv: https://github.com/astral-sh/uv#installation" >&2
    echo "[NotebookLM MCP] Then install notebooklm-mcp-cli: uv tool install notebooklm-mcp-cli" >&2
    exit 1
fi

# Check if notebooklm-mcp-cli is available
if ! uvx --from notebooklm-mcp-cli notebooklm-mcp --help &> /dev/null 2>&1; then
    echo "[NotebookLM MCP] ERROR: notebooklm-mcp-cli is not installed." >&2
    echo "[NotebookLM MCP] Please install it: uv tool install notebooklm-mcp-cli" >&2
    exit 1
fi

# Run the actual MCP server
uvx --from notebooklm-mcp-cli notebooklm-mcp "$@"

plugins

CHANGELOG.md

context7.json

CONTRIBUTING.md

README_CN.md

README_ES.md

README_IT.md

README.md

tessl.json

tile.json