for personal agents

Connect Avuril to an agent

A connected agent can look up businesses whose owners published an Avuril page: hours, cuisine, phone, and the booking link, in the owner's own words. If nothing is published for that question, the lookup says so.

Connect

No Avuril account and no API key. Lookups share one daily limit across everyone using the connector.

Claude

Open Customize, then Connectors, then Add custom connector. Paste the URL and choose No sign-in. A free Claude plan can add one custom connector.

https://avuril.com/api/mcp

ChatGPT

On a paid plan, turn on Developer mode, open Plugins, and create an app from this URL. Choose No authentication.

https://avuril.com/api/mcp

Grok

On grok.com/connectors, choose New Connector, then Custom, and paste the lookup URL. In Grok Build, the same URL can live in ~/.grok/config.toml (on Windows, %USERPROFILE%\.grok\config.toml):

[mcp_servers.avuril]
url = "https://avuril.com/api/mcp"

Cursor

Add this to mcp.json.

{
  "mcpServers": {
    "avuril": {
      "url": "https://avuril.com/api/mcp"
    }
  }
}

VS Code

Add this to mcp.json. The file uses servers and type.

{
  "servers": {
    "avuril": {
      "type": "http",
      "url": "https://avuril.com/api/mcp"
    }
  }
}

Windsurf

Add this to mcp_config.json. The URL field is serverUrl.

{
  "mcpServers": {
    "avuril": {
      "serverUrl": "https://avuril.com/api/mcp"
    }
  }
}

Gemini CLI

Add this to ~/.gemini/settings.json. Streamable HTTP uses httpUrl.

{
  "mcpServers": {
    "avuril": {
      "httpUrl": "https://avuril.com/api/mcp"
    }
  }
}