Packages
Library for accessibility snapshot testing in Phoenix applications using axe-core and Playwright.
Current section
Files
Jump to
Current section
Files
bin/mcp-server
#!/bin/bash
# MCP server wrapper for excessibility
# Run this from your Phoenix project directory (where excessibility is a dependency)
export MCP_CLIENT_CWD="$PWD"
export TERM=dumb
export NO_COLOR=1
export ELIXIR_CLI_ECHO=false
# Optional: enable debug logging
# export MCP_LOG_FILE=/tmp/excessibility_mcp.log
exec mix run --no-halt -e "Excessibility.MCP.Server.start()" 2>/dev/null