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/os → Admin → API keys.
First tools
get_session— confirm workspace and brainvault_browse— browse vault folderssemantic_searchorgrep— find contentread— fetch a document byresource_id
See MCP server and MCP quickstart.