search_prompts
Search for prompts by keyword, category, or tags to find existing prompts and avoid duplicates before creating new ones.
Instructions
🔍 ALWAYS START HERE: Search for prompts by keyword, category, or tags. Returns matching prompts with their metadata. This is the recommended first step before using get_prompt or creating new prompts. Helps avoid duplicates and find exactly what you need.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Filter by specific category. Available: "development", "content-creation", "business", "ai-prompts", "devops", "documentation", "project-management" | |
query | No | Search keywords to find in prompt title, description, or content. Examples: "api", "documentation", "code review", "testing" | |
tags | No | Filter by tags for precise matching. Examples: ["api", "rest"], ["testing", "automation"], ["documentation", "technical-writing"] |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Filter by specific category. Available: \"development\", \"content-creation\", \"business\", \"ai-prompts\", \"devops\", \"documentation\", \"project-management\"",
"type": "string"
},
"query": {
"description": "Search keywords to find in prompt title, description, or content. Examples: \"api\", \"documentation\", \"code review\", \"testing\"",
"type": "string"
},
"tags": {
"description": "Filter by tags for precise matching. Examples: [\"api\", \"rest\"], [\"testing\", \"automation\"], [\"documentation\", \"technical-writing\"]",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}