AUVY

Claude plugin

Connect Claude Desktop and Claude Code to AUVY via MCP with OAuth.

Claude (Anthropic)

Connect Claude Desktop and Claude Code to AUVY via the hosted MCP server at https://mcp.auvy.ai/mcp.

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "auvy": {
      "type": "http",
      "url": "https://mcp.auvy.ai/mcp"
    }
  }
}

Complete browser sign-in at https://auvy.ai/os/oauth/authorize when prompted. No API key in MCP config for OAuth-capable clients.

Config path:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Claude Code

Claude Code supports HTTP MCP servers with the same URL-only OAuth flow:

{
  "mcpServers": {
    "auvy": {
      "type": "http",
      "url": "https://mcp.auvy.ai/mcp"
    }
  }
}

API key alternative

For automation without OAuth, add a Bearer header (same as Codex):

{
  "mcpServers": {
    "auvy": {
      "url": "https://mcp.auvy.ai/mcp",
      "headers": {
        "Authorization": "Bearer ak_live_..."
      }
    }
  }
}

Create keys at auvy.ai/osAdmin → API keys.

First tools

  1. get_session — confirm workspace and brain
  2. vault_browse — browse vault folders
  3. semantic_search or grep — find content
  4. read — fetch a document by resource_id

See MCP server and MCP quickstart.

On this page