Letta · Schema
UpdateStdioMCPServer
Update schema for Stdio MCP server - all fields optional
AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| mcp_server_type | string | |
| command | object | The command to run (MCP 'local' client will run this command) |
| args | object | The arguments to pass to the command |
| env | object | Environment variables to set |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/letta__schemas__mcp_server__UpdateStdioMCPServer",
"title": "UpdateStdioMCPServer",
"properties": {
"mcp_server_type": {
"type": "string",
"const": "stdio",
"title": "Mcp Server Type",
"default": "stdio"
},
"command": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Command",
"description": "The command to run (MCP 'local' client will run this command)"
},
"args": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Args",
"description": "The arguments to pass to the command"
},
"env": {
"anyOf": [
{
"additionalProperties": {
"type": "string"
},
"type": "object"
},
{
"type": "null"
}
],
"title": "Env",
"description": "Environment variables to set"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"command",
"args"
],
"description": "Update schema for Stdio MCP server - all fields optional"
}