search_stackoverflow
Retrieve programming-related answers and solutions from Stack Overflow by entering a search query. Specify the maximum number of results to streamline your code research.
Instructions
Search Stack Overflow for programming questions and answers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results (default: 5) | |
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of results (default: 5)",
"maximum": 10,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}