PostHog · Schema
MCPServerInstallation
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| template_id | string | |
| name | string | |
| icon_key | string | Lowercase key from the linked template for brand icons. Empty if custom install (no template). |
| display_name | string | |
| url | string | |
| description | string | |
| auth_type | object | |
| is_enabled | boolean | |
| needs_reauth | boolean | |
| pending_oauth | boolean | |
| proxy_url | string | |
| tool_count | integer | Number of live (non-removed) tools exposed by this installation. |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MCPServerInstallation",
"title": "MCPServerInstallation",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"template_id": {
"type": "string",
"format": "uuid",
"readOnly": true,
"nullable": true
},
"name": {
"type": "string",
"readOnly": true
},
"icon_key": {
"type": "string",
"readOnly": true,
"default": "",
"description": "Lowercase key from the linked template for brand icons. Empty if custom install (no template)."
},
"display_name": {
"type": "string",
"maxLength": 200
},
"url": {
"type": "string",
"format": "uri",
"maxLength": 2048
},
"description": {
"type": "string"
},
"auth_type": {
"$ref": "#/components/schemas/MCPAuthTypeEnum"
},
"is_enabled": {
"type": "boolean"
},
"needs_reauth": {
"type": "boolean",
"readOnly": true
},
"pending_oauth": {
"type": "boolean",
"readOnly": true
},
"proxy_url": {
"type": "string",
"readOnly": true
},
"tool_count": {
"type": "integer",
"readOnly": true,
"description": "Number of live (non-removed) tools exposed by this installation."
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"updated_at": {
"type": "string",
"format": "date-time",
"readOnly": true,
"nullable": true
}
},
"required": [
"created_at",
"icon_key",
"id",
"name",
"needs_reauth",
"pending_oauth",
"proxy_url",
"template_id",
"tool_count",
"updated_at"
]
}