Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.
Integrate VS Code with Transform MCP
Visual Studio Code supports MCP servers through workspace or user mcp.json configuration. After setup, your AI assistant in VS Code can call Transform MCP tools against your Coalesce account.
For token and endpoint details, see Configure Transform MCP.
Prerequisites
You need:
- A Coalesce refresh token from the Deploy tab or COA
~/.coa/config - Your Coalesce App host URL
- VS Code with MCP support through an MCP-compatible extension
Configure Transform MCP
Step 1: Open MCP Configuration
- Open the Command Palette with Cmd+Shift+P on macOS or Ctrl+Shift+P on Windows.
- Run MCP: Open Workspace Folder MCP Configuration. If your extension offers a user-level command instead, use that equivalent.
Step 2: Add the Server
VS Code uses the servers key, not mcpServers. Replace <your-app-host> and <your-refresh-token>.
{
"servers": {
"coalesce-transform": {
"type": "http",
"url": "https://<your-app-host>/api/v1/mcp",
"headers": {
"Authorization": "Bearer <your-refresh-token>"
}
}
}
}
Step 3: Reload and Verify
Reload the VS Code window if prompted. Ask your assistant:
List Coalesce environments in this organization.
Configuration Notes
- Use
https://<your-app-host>/api/v1/mcpas the full URL. - The
Authorizationheader must beBearer <your-refresh-token>. - No additional Coalesce headers are required.
Exact MCP UI and command names depend on your VS Code MCP extension. Refer to your extension documentation if the palette command differs.
Troubleshooting
| Symptom | What to check |
|---|---|
| Server not found | Confirm you used servers, not mcpServers. |
| Authentication failed | Re-copy the token from the Deploy tab. |
| Wrong host | Use the same app host you sign in to, including SSO vanity subdomains. |
For more errors, see Transform MCP Troubleshooting.