---
title: "Search Notes"
method: POST
path: "/v2/mcp/notes/search"
tags: ["external", "external-v2"]
---

# Search Notes

`POST /v2/mcp/notes/search`

## Request body

- SearchNotesRequestSchema
  - `limit` integer — Maximum number of notes to return.
  - `offset` integer — Number of matching notes to skip before returning results.
  - `query` string, required — Free-text query used to search across the caller's notes.

## Response `200`

OK

- SearchNotesResponseSchema
  - `limit` integer, required — Limit applied to the search results.
  - `offset` integer, required — Offset applied before returning results.
  - `results` SearchNotesResultSchema[] — Matching notes ordered by relevance.
    - `created_at` string, date-time, required — Timestamp representing when the note was created.
    - `id` string, uuid, required — Unique identifier of the note.
    - `primary_label` string, required — Primary label or title associated with the note.
    - `secondary_label` string, nullable — Secondary label for the note if available.
    - `snippet` string, nullable — Optional snippet derived from the note content.
    - `updated_at` string, date-time, required — Timestamp representing when the note was last updated.
  - `total` integer, required — Total number of matching notes before pagination.

---

[API](https://skmtc.net/mem/apis/mem-api.md) · [All operations](https://skmtc.net/mem/apis/mem-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mem/mem-api/versions/4023cb07f31f/schema)
