Letta · Schema

UpdateStdioMCPServer

Update a Stdio MCP server

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
server_name object The name of the MCP server
stdio_config object The configuration for the server (MCP 'local' client will run this command)
View JSON Schema on GitHub

JSON Schema

letta-letta-schemas-mcp-updatestdiomcpserver-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/letta__schemas__mcp__UpdateStdioMCPServer",
  "title": "UpdateStdioMCPServer",
  "properties": {
    "server_name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Server Name",
      "description": "The name of the MCP server"
    },
    "stdio_config": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/StdioServerConfig"
        },
        {
          "type": "null"
        }
      ],
      "description": "The configuration for the server (MCP 'local' client will run this command)"
    }
  },
  "additionalProperties": false,
  "type": "object",
  "description": "Update a Stdio MCP server"
}