---
title: VS Code Integration
description: Configure Visual Studio Code with the Siglata Agent Plugin and Model Context Protocol.
sidebar:
  label: VS Code
  order: 11
---

Visual Studio Code supports portable Agent Plugins and MCP servers through the official Agent Customization extensions.

## Automated Setup

Run the Siglata Universal Installer:

**macOS & Linux**

```bash curl -fsSL https://www.siglata.com/install/plugins | sh ```

**Windows**

```powershell irm https://www.siglata.com/install/plugins.ps1 | iex ```

The installer detects your VS Code / Copilot environment and configures both the skills directory and MCP server entry.

## Manual Setup

Add the Siglata MCP server to `.vscode/mcp.json` or your user settings:

```json
{
  "mcpServers": {
    "siglata": {
      "type": "streamable-http",
      "url": "https://www.siglata.com/v1/mcp"
    }
  }
}
```

## Features

- **GitHub Copilot Chat**: Query Siglata spreadsheet models and files directly from the chat sidebar.
- **In-Editor Previews**: Review cell updates side-by-side with your application code.
- **Automated Verification**: Run spreadsheet audits and formula checks directly from VS Code tasks.
