An MCP (Model Context Protocol) server plug for Phoenix LiveView that exposes your socket assigns and browser context to AI coding tools like Claude Code.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"live_agent": {
"command": "npx",
"args": [
"-y",
"sunprema/live_agent"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add live_agent npx -y sunprema/live_agent
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"live_agent": {
"command": "npx",
"args": [
"-y",
"sunprema/live_agent"
]
}
}
}
📋 Copy