Skip to content
  • Auto
  • Light
  • Dark
DiscordForumGitHubSign up
View as Markdown
Copy Markdown

Open in Claude
Open in ChatGPT

Update Mcp Server

client.mcpServers.modify(stringmcpServerID, McpServerModifyParamsbody, RequestOptionsoptions?): McpServerModifyResponse
patch/v1/mcp-servers/{mcp_server_id}

Update an existing MCP server configuration

ParametersExpand Collapse
mcpServerID: string
McpServerModifyParams = UpdateStdioMcpServer | UpdateSseMcpServer | UpdateStreamableHTTPMcpServer
McpServerModifyParamsBase { args, command, env, server_name }
args?: Array<string> | null

The arguments to pass to the command

command?: string | null

The command to run the MCP server

env?: Record<string, string> | null

Environment variables to set

server_name?: string | null

The name of the MCP server

UpdateStdioMcpServer extends McpServerModifyParamsBase { args, command, env, server_name }
UpdateSseMcpServer extends McpServerModifyParamsBase { args, command, env, server_name }
UpdateStreamableHTTPMcpServer extends McpServerModifyParamsBase { args, command, env, server_name }
ReturnsExpand Collapse
McpServerModifyResponse = StdioMcpServer { args, command, server_name, 3 more } | SseMcpServer { server_name, server_url, id, 4 more } | StreamableHTTPMcpServer { server_name, server_url, id, 4 more }

A Stdio MCP server

Accepts one of the following:
StdioMcpServer { args, command, server_name, 3 more }

A Stdio MCP server

args: Array<string>

The arguments to pass to the command

command: string

The command to run (MCP 'local' client will run this command)

server_name: string

The name of the server

id?: string

The human-friendly ID of the Mcp_server

env?: Record<string, string> | null

Environment variables to set

type?: "sse" | "stdio" | "streamable_http"
Accepts one of the following:
"sse"
"stdio"
"streamable_http"
SseMcpServer { server_name, server_url, id, 4 more }

An SSE MCP server

server_name: string

The name of the server

server_url: string

The URL of the server

id?: string

The human-friendly ID of the Mcp_server

auth_header?: string | null

The name of the authentication header (e.g., 'Authorization')

auth_token?: string | null

The authentication token or API key value

custom_headers?: Record<string, string> | null

Custom HTTP headers to include with requests

type?: "sse" | "stdio" | "streamable_http"
Accepts one of the following:
"sse"
"stdio"
"streamable_http"
StreamableHTTPMcpServer { server_name, server_url, id, 4 more }

A Streamable HTTP MCP server

server_name: string

The name of the server

server_url: string

The URL of the server

id?: string

The human-friendly ID of the Mcp_server

auth_header?: string | null

The name of the authentication header (e.g., 'Authorization')

auth_token?: string | null

The authentication token or API key value

custom_headers?: Record<string, string> | null

Custom HTTP headers to include with requests

type?: "sse" | "stdio" | "streamable_http"
Accepts one of the following:
"sse"
"stdio"
"streamable_http"
Update Mcp Server
import Letta from '@letta-ai/letta-client';

const client = new Letta({
  apiKey: 'My API Key',
});

const response = await client.mcpServers.modify('mcp_server_id');

console.log(response);
{
  "args": [
    "string"
  ],
  "command": "command",
  "server_name": "server_name",
  "id": "mcp_server-123e4567-e89b-12d3-a456-426614174000",
  "env": {
    "foo": "string"
  },
  "type": "sse"
}
Returns Examples
{
  "args": [
    "string"
  ],
  "command": "command",
  "server_name": "server_name",
  "id": "mcp_server-123e4567-e89b-12d3-a456-426614174000",
  "env": {
    "foo": "string"
  },
  "type": "sse"
}