search_all
Search multiple programming platforms like GitHub, PyPI, and Stack Overflow simultaneously to find code examples and documentation efficiently.
Instructions
Search all platforms simultaneously
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum results per platform (1-5, default: 3) | |
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum results per platform (1-5, default: 3)",
"maximum": 5,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}