View as Markdown
Limitless.ai icon

Limitless.ai ACTION

Get Lifelogs

Returns a list of lifelog entries based on specified time range or date. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Limitless.ai account once, then configure and run Get Lifelogs from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "limitless_ai-get-lifelogs",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    limitless_ai: { authProvisionId: "apn_xxxxxxx" },
    timezone: "Timezone",
    date: "Date",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Get Lifelogs inputs
Property Type Description
timezone Timezone string
Time zone identifier, e.g., UTC or America/New_York
Optional
date Date string
Specific date in ISO format: YYYY-MM-DD. If start or end are provided, date will be ignored
Required
start Start string
Start date or timestamp for the query range. ISO-8601 format: YYYY-MM-DD or YYYY-MM-DD HH:mm:SS
Optional
end End string
End date or timestamp for the query range. ISO-8601 format: YYYY-MM-DD or YYYY-MM-DD HH:mm:SS
Optional
cursor Cursor string
Pagination cursor to fetch the next set of results
Optional
direction Direction string
Order of results
Optional
includeMarkdown Include Markdown boolean
Whether to include Markdown-formatted content
Optional
includeHeadings Include Headings boolean
Whether to include document headings in the result
Optional
isStarred Is Starred boolean
Filter results by starred status
Optional
limit Limit string
Maximum number of results to return
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
limitless_ai-get-lifelogs
Version
0.0.2
App
Limitless.ai
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes