search_symbols
Search a repository for exported symbols to locate definitions of functions, classes, or types. Returns file path, language, kind, signature, and doc comments.
Instructions
Searches the entire repository for files that export a specific symbol name. Use this to find where a function, class, type, or interface is defined. Returns: file path, language, kind (function/class/type/etc.), signature, and doc comment. Example: search for 'createClient' to find all files that export a function by that name.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | The exact exported symbol name to search for. Case-sensitive. Example: 'createClient', 'UserSchema', 'POST'. |