Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ css/
.DS_Store
*.swp
.idea
.vscode
.tool-versions

# Environment
Expand Down
22 changes: 22 additions & 0 deletions .vscode/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"servers": {
"github": {
Comment on lines +1 to +3
Copy link

Copilot AI Mar 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The root MCP config omits the inputs field (the @primer/mcp README’s VS Code example includes "inputs": []). If VS Code expects this key (even as an empty array), the config may be considered incomplete or get rewritten by tooling. Consider adding "inputs": [] at the root for compatibility with the documented configuration shape.

Copilot uses AI. Check for mistakes.
"type": "http",
"url": "https://api.githubcopilot.com/mcp"
},
"playwright": {
"command": "npx",
"args": [
"-y",
"@microsoft/mcp-server-playwright"
]
},
Comment on lines +7 to +13
Copy link

Copilot AI Mar 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The playwright MCP server entry is missing a type field. Our own @primer/mcp README’s VS Code example config specifies type: "stdio" for command-based servers; without it, VS Code may not treat this server as a stdio MCP server and fail to start it. Add "type": "stdio" to the playwright server config for consistency and to match the documented schema.

Copilot uses AI. Check for mistakes.
"primer": {
"type": "stdio",
"command": "npx",
"args": [
"@primer/mcp@latest"
]
}
}
}
Loading