-
Notifications
You must be signed in to change notification settings - Fork 670
Open
Labels
Description
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?
