Skip to main content
Agents should use Vued through the narrowest path that provides the data they need.
  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

{
  "mcpServers": {
    "vued": {
      "command": "vued",
      "args": ["mcp"]
    }
  }
}

Ready-to-paste Python client

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 for tool schemas and Mintlify maintenance for updating this docs site.
Last modified on June 29, 2026