Targetprocess MCP Server

by aaronsb
Verified

inspect_object

Inspect Target Process objects and properties through the API. This tool also provides API discovery capabilities through error messages when used with unsupported entity types.

Input Schema

NameRequiredDescriptionDefault
actionYesAction to perform
entityTypeNoType of entity to inspect (required for get_properties and get_property_details)
propertyNameNoName of property to get details for (required for get_property_details)

Input Schema (JSON Schema)

{ "properties": { "action": { "description": "Action to perform", "enum": [ "list_types", "get_properties", "get_property_details", "discover_api_structure" ], "type": "string" }, "entityType": { "description": "Type of entity to inspect (required for get_properties and get_property_details)", "type": "string" }, "propertyName": { "description": "Name of property to get details for (required for get_property_details)", "type": "string" } }, "required": [ "action" ], "type": "object" }