chore: clean up root directory, move docs to /docs and legacy plans to /docs_archive

This commit is contained in:
2026-05-07 15:05:34 -07:00
parent dc60e1fdf5
commit 3563b98de1
65 changed files with 1 additions and 40164 deletions

29
docs/mcp-zed.md Normal file
View File

@@ -0,0 +1,29 @@
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>
}
}
}