We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/andytango/puppeteer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
puppeteer-mcp•517 B
#!/bin/bash
# Launcher script for puppeteer-mcp server
# This script can be referenced from anywhere to start the MCP server.
#
# Usage:
# /path/to/puppeteer-mcp/bin/puppeteer-mcp [--http] [--port=3000]
#
# For Claude Code, run:
# claude mcp add puppeteer /Users/andy/git/github/puppeteer-mcp/bin/puppeteer-mcp
# Get the directory where this script is located
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
PROJECT_DIR="$(dirname "$SCRIPT_DIR")"
# Run the built server
exec node "$PROJECT_DIR/dist/index.js" "$@"