Integrations
VS Code
Use Nimply with GitHub Copilot's agent mode in VS Code
Connect
- Create an API key in Nimply → Settings → Developers.
- Run MCP: Add Server from the Command Palette, or create
.vscode/mcp.jsonin your workspace:
{
"servers": {
"nimply": {
"type": "http",
"url": "https://mcp.nimply.io/mcp",
"headers": {
"Authorization": "Bearer nim_live_YOUR_KEY"
}
}
}
}To avoid committing the key, use an input placeholder instead:
{
"inputs": [
{ "id": "nimply-key", "type": "promptString", "password": true, "description": "Nimply API key" }
],
"servers": {
"nimply": {
"type": "http",
"url": "https://mcp.nimply.io/mcp",
"headers": { "Authorization": "Bearer ${input:nimply-key}" }
}
}
}- Open Copilot Chat in agent mode — the Nimply tools are available under the tools picker.
Try it
- "List my Nimply channels and tell me which need reconnecting."
Troubleshooting
- Server won't start — run MCP: List Servers → nimply → Show Output for the error detail.
- Tools missing in chat — agent mode only; ask mode doesn't call tools.