---
title: Model Context Protocol
description: Connect AI agents to Siglata via Model Context Protocol (MCP).
sidebar:
  label: Model Context Protocol
  order: 5
---

Siglata implements the Model Context Protocol (MCP) to allow coding agents to read and modify files with transaction safety.

## Configuration

Add Siglata to your agent's MCP configuration (`claude_desktop_config.json` or `.cursor/mcp.json`):

```json
{
  "mcpServers": {
    "siglata": {
      "command": "siglata",
      "args": ["mcp", "serve"]
    }
  }
}
```

## Available Tools

- `context`: Read current organization status and limits.
- `search`: Execute read-only file queries and searches.
- `execute`: Propose and apply transactional file mutations.
