Get Started
PuzldAI Core
Use PuzldAI through the CLI / TUI for free — no registration needed.
01
Install
npm install -g puzldaior clone from GitHub
git clone https://github.com/MedChaouch/Puzld.ai02
Run
Start the interactive TUI or run commands directly.
TUI
puzldaiCLI
puzldai run "your prompt here"Puzld MCP / API
Once you have PuzldAI Core installed.
01
Authenticate
Login (browser)
puzldai loginLogin (headless / no GUI)
puzldai login --token <your-api-key>02
Serve
Start the MCP server to expose your agents.
puzldai serve --mcp03
MCP Clients
Add Puzld MCP to Claude Desktop, Cursor, or any MCP client.
claude mcp add puzld https://api.puzld.cc/protocol \ --header "X-PUZLD-API-KEY: YOUR_API_KEY"
See MCP docs for more clients and configuration details.
04
REST API
Start a local REST API server to integrate with your own apps.
puzldai servecurl -X POST http://localhost:3000/task \
-H "Content-Type: application/json" \
-d '{"prompt": "Explain async/await", "agent": "auto"}'POST
/task— Submit a taskGET
/task/:id— Get task resultGET
/task/:id/stream— SSE streamGET
/agents— List agentsGET
/health— Health check