[analysis]
Gets detailed information about a type (members, inheritance, interfaces, docs, and location).
Try this tool in Playground.
| Name | Type | Required | Description |
|---|---|---|---|
| typeName | string | Yes | Type name (simple or fully qualified). |
| projectName | string | No | Optional project name filter. |
| timeout_ms | number | No | Timeout in milliseconds (5 minutes). Use 0 to disable. Default is 300000. |
Get type info
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_type_info",
"arguments": {
"typeName": "UserService"
}
}
}{
"success": true,
"data": {
"name": "SolutionManager",
"fullName": "Glider.Services.SolutionManager",
"kind": "Class",
"accessibility": "Public",
"baseType": "Object",
"interfaces": [
"ISolutionManager"
],
"filePath": "/path/to/SolutionManager.cs",
"lineNumber": 10,
"members": [
{
"name": "LoadSolutionAsync",
"kind": "Method",
"type": "Task",
"accessibility": "Public",
"signature": "Task LoadSolutionAsync(string solutionPath)"
}
]
},
"error": null
}Returns type details including members