Skip to content

Commit e819f23

Browse files
authored
Add PAT settings to gemini-extension.json
Added settings for GitHub Personal Access Token in gemini-extension.json.
1 parent 4bded57 commit e819f23

1 file changed

Lines changed: 18 additions & 11 deletions

File tree

gemini-extension.json

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
{
2-
"name": "github",
3-
"version": "1.0.0",
4-
"mcpServers": {
5-
"github": {
6-
"description": "Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.",
7-
"httpUrl": "https://api.githubcopilot.com/mcp/",
8-
"headers": {
9-
"Authorization": "Bearer $GITHUB_MCP_PAT"
10-
}
11-
}
12-
}
2+
"name":"github",
3+
"version":"1.0.0",
4+
"settings":[
5+
{
6+
"name":"PAT",
7+
"description":"GitHub Personal Access Token. Create at https://github.com/settings/personal-access-tokens.",
8+
"envVar":"GITHUB_MCP_PAT"
9+
}
10+
],
11+
"mcpServers":{
12+
"github":{
13+
"description":"Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.",
14+
"httpUrl":"https://api.githubcopilot.com/mcp/",
15+
"headers":{
16+
"Authorization":"Bearer $GITHUB_MCP_PAT"
17+
}
18+
}
19+
}
1320
}

0 commit comments

Comments
 (0)