Skip to main content

Claude Desktop Setup

Prerequisites

  • Claude Desktop (download from claude.ai)
  • Unizo API key and SCM integration ID
  • Node.js v20 or higher

Setup Instructions

  1. Install @mcp-remote if not already installed:

    npm i mcp-remote
  2. Open Claude Desktop and navigate to Settings → Developer → Edit Config

  3. Add the Unizo SCM configuration to claude_desktop_config.json:

{
"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:scm"
],
"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:scm"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}
}
}
  1. Save the file and restart Claude Desktop

  2. Verify the connection - The tools may take a minute to appear. You should see SCM tools available in Claude.

Available Tools

Once configured, you'll have access to:

  • scm_list_integrations - Get integrations for a specific SCM service
  • scm_list_organizations - Browse SCM organizations with pagination
  • scm_get_organization - Retrieve detailed organization information
  • scm_list_repositories - Browse repositories within an organization
  • scm_get_repository - Retrieve detailed repository information
  • scm_list_branches - Browse branches within a repository
  • scm_get_branch - Retrieve detailed branch information
  • scm_list_commits - Browse commit history with pagination
  • scm_get_commit - Retrieve detailed commit information
  • scm_list_pull_requests - Browse pull requests with pagination
  • scm_get_pull_request - Retrieve detailed pull request information
  • scm_create_pull_request - Create a new pull request
  • scm_update_pull_request - Update an existing pull request

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 : scm,incident,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"
}
}