We’re actively working on support for other development platforms, such as Cursor and Codex. Check back soon!
Install the Xano CLI
Install the Xano CLI globally:Then authenticate and pull your workspace:This creates a
Terminal
Terminal
my-workspace folder in your current directory and downloads your workspace into it. You can also pull into the current folder with xano workspace pull .See the CLI Get Started guide for full details.Install the Developer MCP
The Developer MCP gives AI tools direct access to XanoScript documentation and real-time code validation, significantly improving AI-generated XanoScript quality.
Terminal
Ask Claude Code to make a change
Open your workspace folder in VS Code, launch Claude Code, and ask it to make a change. For example:
Add a step to the auth/signup endpoint that sends a welcome email after a successful registration.Claude Code will read your existing XanoScript, plan the change, and write the updated code — with the Developer MCP providing documentation and validation along the way.
Sync to Xano
Push your changes back to Xano using the CLI:
Git works like it always has — your workspace is plain files on disk. Commit your changes to Git before or after pushing to Xano for full version history, branching, and collaboration.
Terminal
Call the modified API
Send a POST request to your auth/signup endpoint and review the results.You should receive a welcome email shortly after the request completes.
Visually validate the change in Xano
This step is optional, but you can quickly see the parity between your code and the visual representation.Head into Xano, and navigate to your 
auth/signup API by clicking API in the left-hand nav, choose the Authentication group, and click auth/signup.You should see the Send Email step at the end of the logic, right after the Create Authentication Token step.
Enhance your experience with VS Code
Claude Code is the recommended path — it has the most reliable experience with the Developer MCP today. You can enhance your Xano developer experience by utilizing VS Code and our XanoScript Language Server extension.
Setup:
- Install the XanoScript Language Server extension for syntax highlighting and validation.
- Utilize Claude Code in the chat panel or via the terminal for a premium Xano development experience.
We’re actively working on support for other development platforms, such as Cursor and Codex. Check back soon!
What’s next
Developer MCP
Explore the full set of tools and resources the Developer MCP exposes to your AI assistant.
CLI Reference
Learn about push, pull, branching, workflow tests, and more with the Xano CLI.
Logic & Workflows
Dive deeper into the logic that powers your APIs, functions, and background tasks.
AI Agents
Build AI agents in Xano that can reason, use tools, and take actions.