This repository has been archived on 2026-06-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
master-ai/mcp-zed.md

30 lines
651 B
Markdown

local
{
/// Configure an MCP server that runs locally via stdin/stdout
///
/// The name of your MCP server
"some-mcp-server": {
/// The command which runs the MCP server
"command": ,
/// The arguments to pass to the MCP server
"args": [],
/// The environment variables to set
"env": {}
}
}
remote
{
/// Configure an MCP server that you connect to over HTTP
///
/// The name of your remote MCP server
"some-remote-server": {
/// The URL of the remote MCP server
"url": "https://example.com/mcp",
"headers": {
/// Any headers to send along
// "Authorization": "Bearer <token>
}
}
}