search_codebase
Search enterprise codebases using semantic AI to find relevant code snippets across local projects and Git repositories based on natural language queries.
Instructions
Search the indexed codebase using semantic search
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results | |
project_filter | No | Filter by specific project name | |
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of results",
"type": "number"
},
"project_filter": {
"description": "Filter by specific project name",
"type": "string"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}