Prompt Examples
Effective prompts for working with Glider MCP.
> Load the solution at /path/to/MySolution.sln
> Load the solution at /path/to/MySolution.slnx
> Load /path/to/MySolution.sln and watch /path/to/workspace for changes
> Load the project at /path/to/MyProject.csproj
> Load this solution with file watching enabled
> The files changed on disk, sync them please
> Reload the entire solution from disk
> Use search_symbols with query "*Service" and kinds "Type" to find all service classes
> Use search_symbols with query "I*" and kinds "Type" to find interfaces
> Resolve "UserController" and show me the top candidates with their symbolKey values
> Find the symbolKey for UserService, then show me its type hierarchy
> What methods does IAuthService define?
> Resolve the Login method, then find its callers
> Resolve IRepository, then find its implementations
> Get detailed info about the UserController class
> What is the signature of GetUserById method?
> Show me the source of JsonSerializer from System.Text.Json
> Rename the OldClassName to NewClassName
> Move the Helper class to the Utils namespace
> Move the ProcessData method from OldClass to NewClass
> Preview renaming UserService to UserManager without applying
> I need to understand how authentication works. Find the IAuthService interface, list its methods, and show where Login is called.
> Resolve IRepository, then find_implementations with its symbolKey and show public methods.
> Show me the dependency chain from UserController to the database layer.
> Run a batch: search_symbols for "*UserController*" (Type), then get_type_info for the best match, then summarize.