getwired
v0.0.20
Published
AI-powered CLI for visual regression and exploratory testing
Maintainers
Readme
GetWired
GetWired is an AI-powered CLI for visual regression and exploratory testing.
Install
npm install -g getwiredUsage
cd /path/to/your-app
getwired init
npm run dev
getwired test --url http://localhost:3000
getwired reportRun GetWired from the project folder directly. It only tests local apps on localhost or loopback addresses and rejects remote online URLs.
Commands
getwired initinitializes.getwired/in the current project folder and opens the dashboard.getwired testruns a testing session against a local app in the current project folder.getwired reportopens a saved report by id.getwired dashboardopens the interactive dashboard.getwired mcpstarts an MCP server for AI coding agent integration.
MCP Server
Run getwired mcp to start an MCP server that any AI coding agent can connect to. Add this to your agent's config:
Claude Code (~/.claude/settings.json):
{
"mcpServers": {
"getwired": { "command": "getwired", "args": ["mcp"] }
}
}Codex (~/.codex/config.toml):
[mcp_servers.getwired]
command = "getwired"
args = ["mcp"]Cursor (~/.cursor/mcp.json):
{
"mcpServers": {
"getwired": { "command": "getwired", "args": ["mcp"] }
}
}Windsurf (~/.codeium/windsurf/mcp_config.json):
{
"mcpServers": {
"getwired": { "command": "getwired", "args": ["mcp"] }
}
}Augment Code: Open Augment settings > MCP servers, import the same JSON as Claude Code above.
Requirements
- Node.js 20 or newer
Repository
https://github.com/JaySym-ai/getwired
