npm siteglass-mcpstdioMITupdated 1mo ago
siteglass-mcp exposes siteglass.io as MCP tools. Three things an AI agent (or a human) can do with it:
¿Qué puedes hacer con siteglass?
siteglass MCP server
siteglass-mcp exposes
siteglass.io as MCP tools. Three things an AI agent (or a
human) can do with it:
- Scan the app you're building — FREE, no account —
siteglass_scan_localruns a headless browser on your machine againsthttp://localhost:PORT(or any URL you can reach — nothing is tunneled to us), then siteglass analyzes the crawl and returns real findings: broken links/assets, console errors, accessibility & SEO issues, forms worth testing, plus a plain-English report. Point it at your dev server right after the agent builds or changes the app. No signup, no ownership verification, no payment. (First run downloads a headless Chromium, ~1 min.) - Archive any public URL —
siteglass_renderrenders a page server-side and returns a permanent, shareable snapshot: an interactive rrweb DOM capture (post-JS, selectable text, working links), a single-page PDF, or a full-page PNG. No CAPTCHA, no signup, no ownership check, callable programmatically — a bot-friendly alternative to archive.today. (It renders JS-heavy pages; it does not produce WARC, and if the target itself blocks datacenter IPs the capture can come back empty.) - Web-QA a deployed site you own — register → verify → scan → generate flows → run → read results, autonomously, no human signup. This is the hosted/continuous tier (runs on our servers against your live site).
The local scan (1) is free and needs no auth. For the hosted tools (2, 3),
auth is automatic (creates + caches an API key at ~/.siteglass/key; set
SITEGLASS_API_KEY to use your own); the first scan per site is free, then scans
(2 credits) and flow runs (1 credit) draw from a prepaid balance topped up in USD
over Bitcoin Lightning.
Install
npx siteglass-mcp
Claude Code:
claude mcp add siteglass -- npx siteglass-mcp
Cursor / Claude Desktop / Windsurf — add to the MCP config
(~/.cursor/mcp.json, claude_desktop_config.json, …):
{
"mcpServers": {
"siteglass": { "command": "npx", "args": ["-y", "siteglass-mcp"] }
}
}
OpenClaw — add to ~/.openclaw/openclaw.json (OpenClaw consumes MCP
servers); your assistant gets the siteglass_* tools:
{ "mcpServers": { "siteglass": { "command": "npx", "args": ["-y", "siteglass-mcp"] } } }
Then ask the agent: "test my app at with siteglass."
Tools
| tool | does |
|---|---|
siteglass_scan_local |
free, no-auth — crawl a local/dev app in a browser on your machine → analyzed findings + report |
siteglass_render |
archive any public URL → shareable snapshot permalink (rrweb / pdf / png); no CAPTCHA, no signup |
siteglass_get_render |
fetch an archive once its Lightning invoice is paid |
siteglass_register_site |
register an app URL, get an ownership-proof token |
siteglass_verify_site |
confirm the token is live (DNS TXT or hosted) |
siteglass_scan / siteglass_get_scan |
crawl the site → report + findings (first scan free) |
siteglass_generate_flows |
derive executable E2E test flows from a scan |
siteglass_run_flow / siteglass_get_run |
run a flow → per-step pass/fail, screenshots, video, rrweb replay |
siteglass_set_credentials |
give a test login for authenticated flows |
siteglass_feedback |
send feedback to the siteglass team |
Long ops return an id and you poll the get_* tool, so every call stays
under MCP client request timeouts.
Discovery
- Listed in the official MCP Registry as
io.siteglass/mcp. - Machine-discovery on the API host:
https://siteglass.io/openapi.json,/.well-known/agent-skills/index.json,/llms.txt,/SKILLS.md.
MIT licensed.
Instalación
Añade siteglass a tu cliente. Elige el que uses.
claude mcp add siteglass-mcp -- npx -y siteglass-mcpcodex mcp add siteglass-mcp -- npx -y siteglass-mcpamp mcp add siteglass-mcp -- npx -y siteglass-mcp{
"mcpServers": {
"siteglass-mcp": {
"command": "npx",
"args": [
"-y",
"siteglass-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"siteglass-mcp": {
"command": "npx",
"args": [
"-y",
"siteglass-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"siteglass-mcp","command":"npx","args":["-y","siteglass-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"siteglass-mcp": {
"command": "npx",
"args": [
"-y",
"siteglass-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"siteglass-mcp": {
"command": "npx",
"args": [
"-y",
"siteglass-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"siteglass-mcp": {
"command": "npx",
"args": [
"-y",
"siteglass-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"siteglass-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"siteglass-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"siteglass-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"siteglass-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y siteglass-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
8 herramientas
siteglass expone 8 herramientas a un agente conectado.
- siteglass_scan_local
- **free, no-auth** — crawl a local/dev app in a browser on your machine → analyzed findings + report
- siteglass_render
- archive any public URL → shareable snapshot permalink (rrweb / pdf / png); no CAPTCHA, no signup
- siteglass_get_render
- fetch an archive once its Lightning invoice is paid
- siteglass_register_site
- register an app URL, get an ownership-proof token
- siteglass_verify_site
- confirm the token is live (DNS TXT or hosted)
- siteglass_generate_flows
- derive executable E2E test flows from a scan
- siteglass_set_credentials
- give a test login for authenticated flows
- siteglass_feedback
- send feedback to the siteglass team
Puntuación
75 / 100
Buena
- Documentación22/25
- Mantenimiento22/25
- Confianza13/20
- Capacidad6/15
- Instalación12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 43 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 8 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Historial de versiones
| Versiones | Publicada |
|---|---|
| 0.1.5Última | 11 jul 2026 |
| 0.1.2 | 5 jun 2026 |
| 0.1.1 | 5 jun 2026 |
| 0.1.0 | 5 jun 2026 |