search_notes
메모 · macOS
효과: 읽기. 상태: 조건부 제공.
‘조건부 제공’은 도구가 버전, 플랫폼, 권한, 계정 또는 설정에 따라 달라질 수 있음을 뜻하며 모든 설치에서 활성화되었다는 의미는 아닙니다.
macOS
목적
제목 또는 내용으로 Apple Notes를 검색합니다. 페이지 처리됨: `limit`은 호출당 최대 100이므로 더 큰 limit을 요청하지 말고 `offset`으로 페이지를 이동하세요. 응답에는 전체 쿼리와 일치하는 메모 수인 `total`과 `has_more`가 포함되어 제한된 페이지를 전체 답변으로 오인하지 않습니다. `has_more`가 false가 될 때까지 페이지를 이동하세요. `total_is_estimated`가 개수가 하한값일 뿐이라고 나타내더라도 이 방식은 정확합니다. 모든 일치 항목을 순회하려면 order="id"를 전달하세요. order 매개변수를 참조하세요.
필수 입력
query
입력 이름은 도구가 요구하는 정확한 형태로 유지됩니다. 영문 정식 기술 정의는 아래 펼칠 수 있는 스키마에 있습니다.
권한 및 확인
스키마에 명시적 확인 매개변수가 없습니다. 이는 무단 작업을 허용하지 않습니다. 효과를 검토하고 승인을 받으세요.
- 이 플랫폼에서는 사용자가 승인한 앱, 계정 및 리소스만 사용하세요. 연결 및 권한 요구 사항은 이 도구의 플랫폼별 설명을 참조하세요. 이 카탈로그는 추가 OAuth 범위나 OS 권한이 있다고 주장하지 않습니다.
영문 정식 기술 스키마 — macOS
{
"properties": {
"limit": {
"default": "20",
"description": "Matches per page (default 20, capped at 100). To get more, page with offset.",
"type": "integer"
},
"offset": {
"default": "0",
"description": "How many matches to skip (default 0). An offset past the end returns an empty page with has_more=false, not an error.",
"minimum": 0,
"type": "integer"
},
"order": {
"default": "modified",
"description": "order: \"modified\" (default) sorts newest-modified first — what you want to SHOW someone, but NOT safe for paging: modification date changes, so a note edited between two calls jumps to the front and another note is pushed past your cursor and never returned. \"id\" sorts by the note's immutable store id — stable, never renumbered, new notes append at the end — so use order=\"id\" to walk an entire library page by page: edits and insertions mid-crawl are safe with it. One case it cannot cover, because pages are addressed by offset: if a note is DELETED mid-crawl, every note after the hole shifts one slot back and the note that was on the page boundary is skipped, silently. If completeness matters, re-run the crawl and reconcile against total, or crawl while nothing is deleting notes.",
"type": "string"
},
"query": {
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}문서 예시
search_notes 문서 예시입니다. 이 예시를 실행하지 마세요. 표시된 인수는 가상 데이터 세트에 속합니다. 실제 호출 전에 실제 식별자를 확인하고 승인을 받으세요.
{
"query": "launch checklist"
}