Claude Desktop Setup
Prerequisites
- Claude Desktop (download from claude.ai)
- Unizo API key and Public Cloud (Infra) integration ID
- Node.js v20 or higher
Setup Instructions
-
Install @mcp-remote if not already installed:
npm i mcp-remote -
Open Claude Desktop and navigate to Settings → Developer → Edit Config
-
Add the Unizo Public Cloud (Infra) configuration to
claude_desktop_config.json:
- macOS
- Windows
{
"mcpServers": {
"unizo": {
"command": "/Users/{user_name}/.nvm/versions/node/v18.x.x/bin/node",
"args": [
"/Users/{user_name}/.nvm/versions/node/v18.x.x/bin/mcp-remote",
"https://api.unizo.ai/mcp",
"--header",
"apikey:${UNIZO_API_KEY}",
"--header",
"x-mcp-scopes:infra"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}
}
}
{
"mcpServers": {
"unizo": {
"command": "npx",
"args": [
"mcp-remote",
"https://api.unizo.ai/mcp",
"--header",
"apikey:${UNIZO_API_KEY}",
"--header",
"x-mcp-scopes:infra"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}
}
}
Flags: If npx is producing errors, consider adding -y as the first argument to auto-accept the installation of the mcp-remote package.
{
"mcpServers": {
"unizo": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.unizo.ai/mcp",
"--header",
"apikey:${UNIZO_API_KEY}",
"--header",
"x-mcp-scopes:infra"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}
}
}
-
Save the file and restart Claude Desktop
-
Verify the connection - The tools may take a minute to appear. You should see Public Cloud (Infra) tools available in Claude.
Available Tools
Once configured, you'll have access to:
infra_list_connectors- Get list of available infrastructure servicesinfra_list_integrations- Get integrations for a specific infrastructure serviceinfra_list_collections- Browse available collections with paginationinfra_get_collection_details- Retrieve comprehensive collection informationinfra_list_users- Browse users in a collection with paginationinfra_get_user_details- Retrieve detailed user informationinfra_list_resources- Browse infrastructure resources with paginationinfra_get_resource_details- Retrieve comprehensive resource informationinfra_list_policies- Browse access policies with paginationinfra_get_policy_details- Retrieve detailed policy informationinfra_list_roles- Browse IAM roles with paginationinfra_get_role_details- Retrieve detailed role information
Multiple Integrations
To work with multiple categories or integrations, add them as a comma-separated list under the x-mcp-scopes header:
{
"mcpServers": {
"unizo": {
"command": "npx",
"args": [
"mcp-remote",
"https://api.unizo.ai/mcp",
"--header",
"apikey:${UNIZO_API_KEY}",
"--header",
"x-mcp-scopes : infra,scm,ticketing"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}
}
}
Troubleshooting
Tools not appearing
- Ensure Claude Desktop is fully restarted
- Verify your API key is valid
- Check the Developer Console in Claude Desktop for errors
Connection errors
- Verify Node.js v20+ is installed
- Check that your integration is active in Unizo dashboard
Debug mode
Add debug environment variables:
{
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}