PostHog · Schema
MCPServerInstallationTool
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| tool_name | string | |
| display_name | string | |
| description | string | |
| input_schema | object | |
| approval_state | object | |
| last_seen_at | string | |
| removed_at | string | |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MCPServerInstallationTool",
"title": "MCPServerInstallationTool",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"tool_name": {
"type": "string",
"readOnly": true
},
"display_name": {
"type": "string",
"readOnly": true
},
"description": {
"type": "string",
"readOnly": true
},
"input_schema": {
"readOnly": true
},
"approval_state": {
"$ref": "#/components/schemas/MCPServerInstallationToolApprovalStateEnum"
},
"last_seen_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"removed_at": {
"type": "string",
"format": "date-time",
"readOnly": true,
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"updated_at": {
"type": "string",
"format": "date-time",
"readOnly": true,
"nullable": true
}
},
"required": [
"created_at",
"description",
"display_name",
"id",
"input_schema",
"last_seen_at",
"removed_at",
"tool_name",
"updated_at"
]
}