Skip to content
Siglata Docs
English
Esc
navigateopen⌘Jpreview
On this page

Claude Code Integration

Use Siglata's Agent Plugins and MCP server within the Anthropic Claude Code terminal agent.

Claude 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:

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:

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

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

{
  "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.

Was this page helpful?