Skip to content

Instantly share code, notes, and snippets.

@digitarald
Last active April 13, 2025 19:55
Show Gist options
  • Save digitarald/be8322cf237f584f93ea2690db682bf2 to your computer and use it in GitHub Desktop.
Save digitarald/be8322cf237f584f93ea2690db682bf2 to your computer and use it in GitHub Desktop.
MCP Template for VS Code GitHub Copilot
{
"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