---
title: Claude Code Integration
description: Use Siglata's Agent Plugins and MCP server within the Anthropic Claude Code terminal agent.
sidebar:
  label: Claude Code
  order: 1
---

[Claude Code](https://claude.ai/code) is Anthropic's terminal-based agentic coding tool. It natively connects to Siglata via the Model Context Protocol (MCP).

## Automated Setup

Run the Siglata Universal Installer:

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

The installer detects your `.claude` directory, places the `files` skill in `~/.claude/skills/siglata`, and configures the `siglata` MCP server in `~/.claude/mcp.json`.

## Manual Setup

Add Siglata to Claude Code using the CLI:

```bash
claude mcp add siglata -- https://www.siglata.com/v1/mcp
```

Or configure `~/.claude/mcp.json` directly:

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

## Capabilities in Claude Code

- **Live Code & Spreadsheet Synchronization**: Ask Claude Code to extract database schemas and build corresponding Siglata spreadsheets.
- **Diff Plans**: Review changes before applying them with Siglata's transactional mutation model.
- **Verifiable Execution**: Claude Code can run spreadsheet tests and validations directly in its terminal sandbox.
