Letta · Schema
MCPServerSchema
MCP server schema for agent files with remapped ID.
AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Human-readable MCP server ID |
| server_type | string | |
| server_name | string | |
| server_url | object | |
| stdio_config | object | |
| metadata_ | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MCPServerSchema",
"title": "MCPServerSchema",
"properties": {
"id": {
"type": "string",
"title": "Id",
"description": "Human-readable MCP server ID"
},
"server_type": {
"type": "string",
"title": "Server Type"
},
"server_name": {
"type": "string",
"title": "Server Name"
},
"server_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Server Url"
},
"stdio_config": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"title": "Stdio Config"
},
"metadata_": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"title": "Metadata"
}
},
"type": "object",
"required": [
"id",
"server_type",
"server_name"
],
"description": "MCP server schema for agent files with remapped ID."
}