search_notes
Find and retrieve Joplin notes by entering a search query and specifying result limits using the Model Context Protocol for efficient note management.
Instructions
Search for notes in Joplin.
Args:
args: Search parameters
query: Search query string
limit: Maximum number of results (default: 100)
Returns:
Dictionary containing search results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"SearchNotesInput": {
"description": "Input parameters for searching notes.",
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 100,
"title": "Limit"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "SearchNotesInput",
"type": "object"
}
},
"properties": {
"args": {
"$ref": "#/$defs/SearchNotesInput"
}
},
"required": [
"args"
],
"title": "search_notesArguments",
"type": "object"
}