Last active
May 4, 2025 08:32
-
-
Save digitarald/be8322cf237f584f93ea2690db682bf2 to your computer and use it in GitHub Desktop.
MCP Template for VS Code GitHub Copilot
This file contains hidden or 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