Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 18 additions & 11 deletions gemini-extension.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
{
"name": "github",
"version": "1.0.0",
"mcpServers": {
"github": {
"description": "Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.",
"httpUrl": "https://api.githubcopilot.com/mcp/",
"headers": {
"Authorization": "Bearer $GITHUB_MCP_PAT"
}
}
}
"name":"github",
"version":"1.0.0",
"settings":[
{
"name":"GitHub PAT",
"description":"GitHub Personal Access Token. Create at https://github.com/settings/personal-access-tokens/new",
"envVar":"GITHUB_MCP_PAT"
}
],
"mcpServers":{
"github":{
"description":"Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.",
"httpUrl":"https://api.githubcopilot.com/mcp/",
"headers":{
"Authorization":"Bearer $GITHUB_MCP_PAT"
}
}
}
Comment thread
tisonkun marked this conversation as resolved.
}