VS Code (GitHub Copilot Chat)
VS Code supports MCP servers in agent mode. Add Kualia to your usersettings.json:
Windsurf
In Windsurf, open Settings → Cascade → MCP servers → Add server and enter the Kualia URL with HTTP transport. Or edit~/.codeium/windsurf/mcp_config.json:
Zed
In Zed, open the assistant panel settings and add a context server. Insettings.json:
Continue
Add Kualia to your~/.continue/config.json:
Cline / Roo Code
Open the MCP server settings panel and add a remote server with URLhttps://api.kualia.com/mcp and transport HTTP (or streamable HTTP).
Build your own client
Kualia implements the standard MCP authorization flow:- Unauthenticated request to
https://api.kualia.com/mcpreturns401with aWWW-Authenticateheader pointing at/.well-known/oauth-protected-resource. - That document points at the authorization server’s metadata at
/.well-known/oauth-authorization-server. - Clients use Dynamic Client Registration (RFC 7591) and Authorization Code + PKCE to obtain a token.
- Tokens are sent as
Authorization: Bearer <token>on subsequent MCP requests.