In CCA (GitHub Copilot coding agent), the MCP config format is like:
{
"mcpServers": {
"playwright-test": {
"type": "stdio",
"command": "npx",
"args": [
"playwright",
"run-test-mcp-server"
],
"tools": [
"*"
]
}
}
}
In Copilot CLI, the MCP config format is like:
{
"mcpServers": {
"playwright-test": {
"type": "local",
"command": "npx",
"args": [
"playwright",
"run-test-mcp-server"
],
"tools": [
"*"
]
}
}
}
The type is incompatible. Is it possible Copilot CLI sync with CCA and GitHub Copilot Chat in VS Code?

In CCA (GitHub Copilot coding agent), the MCP config format is like:
{ "mcpServers": { "playwright-test": { "type": "stdio", "command": "npx", "args": [ "playwright", "run-test-mcp-server" ], "tools": [ "*" ] } } }In Copilot CLI, the MCP config format is like:
{ "mcpServers": { "playwright-test": { "type": "local", "command": "npx", "args": [ "playwright", "run-test-mcp-server" ], "tools": [ "*" ] } } }The
typeis incompatible. Is it possible Copilot CLI sync with CCA and GitHub Copilot Chat in VS Code?