searchNips
Find relevant Nostr Implementation Possibilities (NIPs) by submitting a search query, with options to limit results and include full content for detailed insights.
Instructions
Search through Nostr Implementation Possibilities (NIPs)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeContent | No | Whether to include the full content of each NIP in the results | |
limit | No | Maximum number of results to return | |
query | Yes | Search query to find relevant NIPs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"includeContent": {
"default": false,
"description": "Whether to include the full content of each NIP in the results",
"type": "boolean"
},
"limit": {
"default": 10,
"description": "Maximum number of results to return",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query to find relevant NIPs",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}