/
Account and connection

Account and connection

auth_get_status

Check whether the assistant's Delightex Nova authorization is valid.

Example prompt

“Check whether I'm signed in to Delightex Nova.”

Example response

{
  "authenticated": true,
  "status": "authenticated",
  "issuedAt": 1789639200,
  "expiresAt": 1789642800
}

NOTE: The timestamps describe when authorization was issued and when it expires.

app_create_browser_url

Create the link that connects a Delightex Nova browser tab to your assistant.

Example prompt

“Give me a Delightex Nova connection link for my Projects.”

Example response

{
  "url": "https://nova.example/mcp-launch#grant=EXAMPLE_GRANT",
  "sessionId": "SESSION_EXAMPLE"
}

NOTE: Use the real link returned by the assistant. Creating the link alone does not connect the tab.

‍

app_list_sessions

List Delightex Nova tabs currently connected to your assistant.

Example prompt

“Which Nova tabs are connected?”

Example response

{
  "sessions": [
    {
      "sessionId": "SESSION_EXAMPLE"
    }
  ]
}

NOTE: Each "sessionId" identifies a connected tab. An empty list means no tabs are connected.

‍

app_get_context

Read the account, plan, current location, and recent Projects.

Example prompt

“Which Delightex Nova account and Project am I working with?”

Example response

{
  "place": "/projects/PROJECT_EXAMPLE",
  "username": "Example creator",
  "projects": {
    "total": 1,
    "lastModified": [
      {
        "id": "PROJECT_EXAMPLE",
        "name": "Moon Garden",
        "lastModified": 1789639200000
      }
    ]
  },
  "subscription": "basic"
}

NOTE: "place" identifies the current location. "lastModified" lists up to five recent Projects.

‍

app_navigate

Open another Delightex Nova location in the connected tab.

Example prompt

“Go to my Nova Projects page in the connected tab.”

Example response

{
  "place": "/projects"
}

NOTE: Returns the resulting Nova location.

‍

Tool index · About these examples

Browse by topic
Get help