Studio testing
Test exposed MCP tools through the embedded Runiq Studio.
Use the Runiq Dashboard to verify that the ASP.NET Core application exposes the expected MCP tools.
The goal is simple: run the application, open the dashboard, list MCP tools, and execute one tool call.
Enable Studio
The default dashboard path is /runiq. If you set Path = "/dashboard", open /dashboard in the same host application.
List MCP tools

The MCP tools list confirms that the host application discovered the expected tool methods and exposed their names, descriptions, and input contracts to MCP clients.
For the travel sample, you should see a tool such as:
If the tool is missing, check that:
- the application is running,
AddRuniqMcp()is registered,MapRuniqMcp()is mapped,- the tool class has
[McpServerToolType], - the method has
[McpServerTool].
Run an MCP tool

The run view lets developers provide input values and execute the selected MCP tool through the same runtime boundary that MCP clients use.
Example input:
| Field | Example |
|---|---|
city | Gebze |
days | 3 |
travelerCount | 10 |
This validates the full hosted flow: dependency injection, input binding, service execution, typed results, and error handling.