Appearance
Connect GitHub Copilot CLI to Taufinity Studio
GitHub Copilot CLI supports MCP servers via ~/.config/copilot/mcp-config.json. The Taufinity CLI writes the right entry.
30-second TL;DR
- Obtain your bearer token from Studio → Settings → API Keys.
- Add the server entry to
~/.config/copilot/mcp-config.json(see Installation). - Run
gh copilot suggest "list my Taufinity sites".
Prerequisites
- GitHub Copilot CLI installed via
gh extension install github/gh-copilot. - The
taufinityCLI signed in.
Installation
Option 1: One-command install
taufinity mcp install --client copilot-cliConfig file location
- macOS:
~/.config/copilot/mcp-config.json - Linux:
~/.config/copilot/mcp-config.json - Windows:
%APPDATA%\copilot\mcp-config.json
Option 2: Manual install — paste this snippet
{
"mcpServers": {
"taufinity": {
"type": "http",
"url": "https://studio.taufinity.io/mcp",
"headers": {
"Authorization": "Bearer <YOUR_TAUFINITY_TOKEN>"
}
}
}
}Manual config
Create or edit ~/.config/copilot/mcp-config.json:
json
{
"mcpServers": {
"taufinity-studio": {
"type": "http",
"url": "https://studio.taufinity.io/mcp",
"headers": {
"Authorization": "Bearer YOUR_TAUFINITY_TOKEN"
}
}
}
}Get your token from Studio → Settings → API Keys or taufinity auth token.
Verify it works
Verify it works
Run `gh copilot suggest "list my Taufinity sites"` and confirm a tool call is made.
Available tools
Same ~70 tools. See Claude Code → Available tools.
Troubleshooting
| Symptom | Cause | Fix |
|---|---|---|
gh copilot doesn't see Taufinity tools | Config file in wrong location | Confirm ~/.config/copilot/mcp-config.json exists |
tools/list 401 | Token expired | Re-run taufinity auth login |
See also
- Gemini CLI — alternative terminal MCP client
- VS Code Copilot — IDE version of the same product