Last active
April 13, 2025 19:55
-
-
Save digitarald/be8322cf237f584f93ea2690db682bf2 to your computer and use it in GitHub Desktop.
MCP Template for VS Code GitHub Copilot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"inputs": [ | |
{ | |
"type": "promptString", | |
"id": "github-pat", | |
"password": true, | |
"description": "GitHub Personal Access Token (PAT, https://github.com/settings/personal-access-tokens/new)" | |
} | |
], | |
"servers": { | |
// https://github.com/modelcontextprotocol/servers/tree/main/src/github | |
"GitHub": { | |
"command": "npx", | |
"args": ["-y", "@modelcontextprotocol/server-github"], | |
"env": { | |
"GITHUB_PERSONAL_ACCESS_TOKEN": "${github-pat}" | |
} | |
}, | |
// https://github.com/modelcontextprotocol/servers/tree/main/src/fetch | |
"fetch": { | |
"command": "uvx", | |
"args": ["mcp-server-fetch"] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment