PostHog · Schema
MCPServerTemplate
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| url | string | |
| docs_url | string | |
| description | string | |
| auth_type | object | |
| icon_key | string | |
| category | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MCPServerTemplate",
"title": "MCPServerTemplate",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"name": {
"type": "string",
"maxLength": 200
},
"url": {
"type": "string",
"format": "uri",
"maxLength": 2048
},
"docs_url": {
"type": "string",
"format": "uri",
"maxLength": 2048
},
"description": {
"type": "string"
},
"auth_type": {
"$ref": "#/components/schemas/MCPAuthTypeEnum"
},
"icon_key": {
"type": "string",
"maxLength": 100
},
"category": {
"$ref": "#/components/schemas/CategoryEnum"
}
},
"required": [
"id",
"name",
"url"
]
}