✅ Unified, ✅ Flexible, ✅ Extensible
Example Atlassian: .vscode/mcp.json
{
"inputs": [{
"id": "atl_token",
"type": "promptString",
"password": true,
"description": "Enter your Atlassian Jira and Confluence token"
}],
"servers": {
"mcp-atlassian": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "CONFLUENCE_URL",
"-e", "CONFLUENCE_USERNAME",
"-e", "CONFLUENCE_API_TOKEN",
"-e", "JIRA_URL",
"-e", "JIRA_USERNAME",
"-e", "JIRA_API_TOKEN",
"ghcr.io/sooperset/mcp-atlassian:latest"
],
"env": {
"CONFLUENCE_URL": "https://xyz.atlassian.net/wiki",
"CONFLUENCE_USERNAME": "CONFLUENCE_USERNAME",
"CONFLUENCE_API_TOKEN": "${input:atl_token}",
"JIRA_URL": "https://xyz.atlassian.net",
"JIRA_USERNAME": "JIRA_USERNAME",
"JIRA_API_TOKEN": "${input:atl_token}"
}
}
}
}
.github/copilot-instructions.md
.github/prompts/prompt_Example.md
In settings.json, define extra instruction files:
"github.copilot.chat.codeGeneration.instructions": [
{ "file": ".github/code-style.md" }
],
"github.copilot.chat.testGeneration.instructions": [
{ "file": ".github/test-style.md" }
]
Examples of what MCP servers can do:
GitHub Copilot is just the start.
With MCP, you're turning it into a developer sidekick.
Build faster, smarter, and with fewer tabs open.