Prompt Examples

Effective prompts for working with Glider MCP.

Loading Solutions

Start by loading your .NET solution or project.

> Load the solution at /path/to/MySolution.sln
> Load the project at /path/to/MyProject.csproj

Finding Types

Search for types using patterns and wildcards.

> Find all types matching *Service
> Find types that start with I (interfaces)
> Find all types in the DataLayer project

Exploring Code

Navigate and understand your codebase.

> Show me the type hierarchy for UserService
> What methods does IAuthService define?
> Find all usages of the Login method
> Find all implementations of IRepository

Getting Details

Get detailed information about specific symbols.

> Get detailed info about the UserController class
> What is the signature of GetUserById method?
> Show me the source of JsonSerializer from System.Text.Json

Refactoring

Perform semantic refactoring operations.

> 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

Complex Analysis

Multi-step analysis workflows.

> I need to understand how authentication works. Find the IAuthService interface, list its methods, and show where Login is called.
> Find all classes that implement IRepository and show their public methods.
> Show me the dependency chain from UserController to the database layer.