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

# Agents Overview

> Use Vued safely from coding agents and AI tools.

Agents should use Vued through the narrowest path that provides the data they need.

## Recommended pattern

1. Use local MCP or SDK local methods for decrypted meeting search.
2. Use cloud API or SDK cloud methods for metadata writes, webhooks, API keys, and signed audio URLs.
3. Avoid remote cloud routes for plaintext transcript content.
4. Keep secrets out of prompts, source control, and generated docs.

## Ready-to-paste MCP config

```json theme={null}
{
  "mcpServers": {
    "vued": {
      "command": "vued",
      "args": ["mcp"]
    }
  }
}
```

## Ready-to-paste Python client

```python theme={null}
import os
from vued import Vued

client = Vued(
    api_key=os.environ["VUED_API_KEY"],
    org_id=os.environ["VUED_ORG_ID"],
)
```

Use [Local MCP](/agents/local-mcp) for tool schemas and [Mintlify maintenance](/agents/mintlify-maintenance) for updating this docs site.
