get_type_info

[analysis]

Gets detailed information about a type (members, inheritance, interfaces, docs, and location).

Try this tool in Playground.

Parameters

NameTypeRequiredDescription
typeNamestringYesType name (simple or fully qualified).
projectNamestringNoOptional project name filter.
timeout_msnumberNoTimeout in milliseconds (5 minutes). Use 0 to disable. Default is 300000.

Examples

Get type info

Request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_type_info",
    "arguments": {
      "typeName": "UserService"
    }
  }
}
Response
{
  "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
}

Response Notes

Returns type details including members