Using Claude Code? You don’t need VS Code at all. Install the Developer MCP and use the Xano CLI to pull, edit, and push — no extension required.
Set up your editor
Install the XanoScript extension for VS Code. This provides syntax highlighting, real-time validation, code completion, and a built-in connection manager for syncing with your Xano workspace.
Using the Developer MCP? Install the XanoScript Language Server instead. It provides syntax highlighting and validation without conflicting with the MCP. The full extension above should not be installed alongside the Developer MCP.
Configure your AI assistant
The XanoScript extension works with multiple AI coding tools. Choose the setup that matches your workflow.
- GitHub Copilot
- Claude Code / MCP-compatible tools
No additional installation is needed — you’ll generate AI Agent Instructions when you connect to Xano in the next step. These files help Copilot understand your workspace structure and XanoScript conventions.
Connect to Xano
Make sure you have the folder you want to work in open before continuing.
Using the XanoScript Language Server + CLI? Run
xano auth to authenticate, then xano workspace pull ./my-workspace to pull your workspace. See the CLI Get Started guide for details, and skip ahead to the next step.Login to Xano
Click Login to Xano to authenticate with your Xano account and follow the instructions.

Pull changes from Xano into your IDE
Select your instance from the dropdown that appears, and then select your workspace and your live branch.After selection, click Pull Changes to get everything that’s currently present in your Xano workspace.

Generate AI Agent Instructions (Copilot users)
If you’re using GitHub Copilot, select Setup AI Agent Instructions to generate context files for your workspace. These help Copilot understand your workspace structure and XanoScript conventions. It is highly recommended to generate these for the best possible experience.
Using the Developer MCP? Skip this step — the MCP provides XanoScript context to your AI tools directly.
Understand where things live
Xano repos follow a very simple structure. Each primitive lives in its folder, with logic stored inside You’ll see other folders for things like functions, AI Agents, and more — for this quick start, we’re just looking at APIs and tables.
.xs files.Repository LayoutOpen the Signup endpoint and make a change
Navigate to This is what you should be seeing now:
api/authentication/000_auth_signup_post.xsAdd a new function below security.create_auth_token. Order matters — this ensures the email is sent only after signup succeeds. This is our send_email function; just copy and paste the code below.
Save and sync to Xano
Save your changes, and then click the option in the XanoScript extension to stage your changes.
Push your changes to Xano. Progress is shown in a notification in the bottom-right corner.

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.


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.
