Replit

search_apps

Search Replit Apps the user can edit (owned or shared with them). query is a BM25-style keyword search over app titles, best matches first; updatedAfter/updatedBefore bound the last-updated time; these combine. Prefer the default recency ordering: only set updatedAfter/updatedBefore when the user explicitly asks to filter by time, since date bounds exclude apps that would otherwise be listed. url resolves a Replit App URL directly to that app and ignores the other filters. With no filters, this returns the user's most recently updated apps. Pass a result's replId to update_app_using_prompt or ask_question to act on that app. <important>This tool is EXPERIMENTAL: prefer it for finding the user's apps, but if it errors or its results do not match what the user described, fall back to resolve_app_by_name (exact name) and list_apps (recent apps).</important>

Remote NOVA-3951/replit

Remote (network-hosted)

Other tools also called search_apps? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "A Replit App URL; resolves directly to that app, ignoring the other filters."
    },
    "limit": {
      "type": "integer",
      "maximum": 50,
      "minimum": 1,
      "description": "Maximum number of apps to return (default 25)."
    },
    "query": {
      "type": "string",
      "description": "Keywords to match against app titles (BM25-style ranked search)."
    },
    "updatedAfter": {
      "type": "string",
      "description": "ISO 8601 datetime; only apps last updated at or after this time. Optional — omit unless the user explicitly asks to filter by time."
    },
    "updatedBefore": {
      "type": "string",
      "description": "ISO 8601 datetime; only apps last updated at or before this time. Optional, defaults to the present — omit unless the user explicitly asks to filter by time."
    }
  }
}
          

Provider

Replit →