The open source [repository](https://github.com/sveltejs/ai-tools) containing the code for the MCP server is also a GitHub Copilot CLI [plugin marketplace](https://docs.github.com/en/copilot/how-tos/copilot-cli/customize-copilot/plugins-finding-installing). The marketplace allows you to install the `svelte` plugin which will give you the remote MCP server, [skills](skills) to instruct the LLM on how to properly write Svelte 5 code, and a specialized agent for editing Svelte files. If possible, we recommend that you instruct the LLM to execute MCP calls with the agent (you can explicitly mention an agent in your message to delegate work to it) when creating or editing `.svelte` files or `.svelte.ts`/`.svelte.js` modules — this will help save context by handling Svelte-specific tasks more efficiently. ## Installation In VS Code, run the **Install plugin from source** command and use the repository URL: ```text https://github.com/sveltejs/ai-tools ``` You can also add the repository as a marketplace from the Copilot CLI: ```bash copilot plugin marketplace add sveltejs/ai-tools ``` Then, install the Svelte plugin: ```bash copilot plugin install svelte@ai-tools ``` You can also run the same commands from an interactive Copilot CLI session: ```bash /plugin marketplace add sveltejs/ai-tools /plugin install svelte@ai-tools ```