---
title: Installation
description: Install the Siglata Agent Plugin and Model Context Protocol (MCP) server across your AI coding tools.
sidebar:
  label: Installation
  order: 1
---

Siglata delivers automated installers that configure the **Siglata Agent Plugin**, skills, and Model Context Protocol (MCP) server across all major AI coding agents.

## Quick Install

**Universal Multi-Agent (Recommended)**

Installs Siglata into all detected coding agents (Claude Code, Cursor, Codex, VS Code, Hermes, Grok, OpenClaw, NanoClaw, OMP, Kiro):

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

On Windows PowerShell:

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

**Dedicated Codex Setup**

If you use Codex exclusively via the ChatGPT desktop app, run the specialized Codex pipeline:

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

On Windows PowerShell:

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

## Smart Single-Choice Bypass

Our installer is designed to be seamless for non-technical users:

- **If you have only 1 agent** (e.g. only Cursor, or only Codex): The installer detects it and configures it **automatically without asking any questions**.
- **If you have 0 agents**: It automatically installs into the Universal Agent Skills directory (`~/.agents/skills`) with zero prompts.
- **If you have 2 or more agents**: It presents an interactive menu asking whether you want to install into all of them or select specific agents.

## What Gets Configured

1. **Agent Skills**: Stages `skills/files/SKILL.md` and `operations.md` conforming to the [Agent Skills standard](https://agentskills.io/).
2. **MCP Server**: Registers the `siglata` streamable HTTP endpoint at `https://www.siglata.com/v1/mcp` in each client's configuration.
3. **Safety & Backups**: Merges existing settings idempotently and creates automatic backups before changes.

## Standalone Executables

For users in enterprise environments or those who cannot run shell scripts, precompiled, signed executables are available:

- **Windows**: `siglata-installer.exe` (Signed via Azure Trusted Signing)
- **macOS**: `siglata-installer-darwin` (Signed with Developer ID & Apple Notarized)

See [General Installers](/installers) for architecture details, checksum verification, and enterprise deployment options.
