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

Install

Copy the steps for your operating system and app.

Use this page when you want the fastest safe path from “I have an agent” to “it can use my Siglata workspace.” The page checks your operating system in the browser, then shows Bash for macOS and Linux or PowerShell for Windows. You can override the choice at any time.

For Claude Desktop, follow the remote connector guide. The Claude option below prints the connector instructions. For ChatGPT Work, these local commands apply to the desktop app. Hosted Work uses plugins.

Detected operating system: Checking...

#!/usr/bin/env bash
# Pick one: codex, cursor, claude, vscode, chatgpt
AGENT="${AGENT:-codex}"

case "$AGENT" in
  codex)
    codex plugin marketplace add siglata/agent-plugins
    codex plugin add siglata@siglata-agent-plugins
    ;;
  cursor)
    mkdir -p .cursor
    cat > .cursor/mcp.json <<'JSON'
{
  "mcpServers": {
    "siglata": {
      "url": "https://www.siglata.com/v1/mcp"
    }
  }
}
JSON
    ;;
  claude)
    printf '%s\n' \
      'In Claude Desktop, open Customize > Connectors.' \
      'Add a custom connector named siglata with this URL:' \
      'https://www.siglata.com/v1/mcp' \
      'Connect siglata, sign in, choose your organization, and approve access.' \
      'For Team or Enterprise, ask an Owner to add the connector first.'
    ;;
  vscode)
    mkdir -p .vscode
    cat > .vscode/mcp.json <<'JSON'
{
  "servers": {
    "siglata": {
      "type": "http",
      "url": "https://www.siglata.com/v1/mcp"
    }
  }
}
JSON
    ;;
  chatgpt)
    codex mcp add siglata --url https://www.siglata.com/v1/mcp
    codex mcp login siglata
    ;;
esac

Choose Your Agent

Agent Best path Status Notes
Codex Plugin commands Proven (v1) Installs Siglata skills and MCP together. Restart the Codex session after install.
ChatGPT Work on desktop Settings or shared Codex config Installable / spec-compatible Uses the same ~/.codex/config.toml entry as Codex.
Cursor .cursor/mcp.json or MCP settings Proven (v1) Use project config for one repository or global config for every project.
Claude Desktop Custom remote connector Installable / spec-compatible Add Siglata in Customize > Connectors, then connect your account.
VS Code Command Palette or .vscode/mcp.json Installable / spec-compatible Use Copilot Chat in Agent mode and enable the server in the tools picker.

After the Script

  1. Start or restart the agent.
  2. Begin the Siglata sign-in when the app offers it.
  3. Open the magic link in your email.
  4. Pick the organization this agent may reach.
  5. Approve the requested permissions.

You are done when the agent lists exactly two tools, execute and search, and can list files in your Siglata organization.

Detailed Guides

Was this page helpful?