> ## Documentation Index
> Fetch the complete documentation index at: https://api-docs.ollang.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Claude Desktop

> Use Ollang MCP with Claude Desktop for conversational translation management.

# Ollang MCP in Claude Desktop

[Claude Desktop](https://claude.ai/download) is Anthropic's desktop application for conversing with Claude. With Ollang MCP, you can manage your entire translation workflow through natural conversation.

## Setup

<Steps>
  <Step title="Locate the config file">
    <CodeGroup>
      ```bash macOS theme={null}
      ~/Library/Application Support/Claude/claude_desktop_config.json
      ```

      ```bash Windows theme={null}
      %APPDATA%\Claude\claude_desktop_config.json
      ```

      ```bash Linux theme={null}
      ~/.config/Claude/claude_desktop_config.json
      ```
    </CodeGroup>
  </Step>

  <Step title="Add Ollang MCP server">
    ```json claude_desktop_config.json theme={null}
    {
      "mcpServers": {
        "ollang": {
          "url": "https://mcp.ollang.com/mcp"
        }
      }
    }
    ```
  </Step>

  <Step title="Restart Claude Desktop">
    Quit and reopen Claude Desktop. You should see the Ollang tools available in the MCP tools menu (hammer icon).
  </Step>

  <Step title="Authenticate">
    On first tool use, a browser window opens for Ollang sign-in. Complete authentication and return to Claude.
  </Step>
</Steps>

## Use Cases

### Conversational translation management

Claude Desktop is ideal for managing translations through natural language:

```
What's the status of all my translation orders? Show me any that
are completed and ready for download.
```

### Upload and translate files

```
Upload this video from https://example.com/training-video.mp4 with
source language English. Then create subtitle translation orders
for French, Spanish, German, Italian, and Portuguese.
```

### Review and iterate on translations

```
Get the details for order #12345. Run a QC evaluation checking
accuracy, fluency, and tone. If there are issues with the French
translation at timestamp 02:15:30, create a revision request.
```

### Project overview

```
Show me all my Ollang projects. For the "Marketing Q1" project,
list all associated orders and their current statuses.
```

### Translation guidelines

```
Create a custom instruction called "Legal Documents" with the following
guidelines: "Use formal register. Preserve legal terminology in the
source language with translations in parentheses. Do not simplify
complex sentence structures."
```

## Adding More MCP Servers

Extend your Claude Desktop with additional integrations:

```json claude_desktop_config.json theme={null}
{
  "mcpServers": {
    "ollang": {
      "url": "https://mcp.ollang.com/mcp"
    },
    "notion": {
      "command": "npx",
      "args": ["-y", "@notionhq/notion-mcp-server"],
      "env": {
        "NOTION_TOKEN": "ntn_XXXX"
      }
    },
    "dropbox": {
      "url": "https://mcp.dropbox.com/mcp"
    }
  }
}
```

<Tip>
  Claude Desktop shows a hammer icon in the chat input when MCP tools are available. Click it to see all connected tools and their descriptions.
</Tip>
