-
Notifications
You must be signed in to change notification settings - Fork 656
Add a mcp.json config and configuring mcp servers for GitHub Primer and Playwright #7694
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,7 +9,6 @@ css/ | |
| .DS_Store | ||
| *.swp | ||
| .idea | ||
| .vscode | ||
| .tool-versions | ||
|
|
||
| # Environment | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| { | ||
| "servers": { | ||
| "github": { | ||
| "type": "http", | ||
| "url": "https://api.githubcopilot.com/mcp" | ||
| }, | ||
| "playwright": { | ||
| "command": "npx", | ||
| "args": [ | ||
| "-y", | ||
| "@microsoft/mcp-server-playwright" | ||
| ] | ||
| }, | ||
|
Comment on lines
+7
to
+13
|
||
| "primer": { | ||
| "type": "stdio", | ||
| "command": "npx", | ||
| "args": [ | ||
| "@primer/mcp@latest" | ||
| ] | ||
| } | ||
| } | ||
| } | ||
There was a problem hiding this comment.
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
inputsfield (the@primer/mcpREADME’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.