Connecting to the DevOps Velocity MCP server using Claude Desktop
You can connect to the HCL DevOps Velocity (Velocity) MCP server by using the Claude Desktop application to interact with Velocity and retrieve the necessary data and insights.
Before you begin
Procedure
- Open Claude Desktop.
- Go to My Profile → Settings → Developer.
-
Configure the MCP server by adding the JSON configuration.
{ "mcpServers": { "velocity-mcp-server": { "command": "npx", "args": [ "-y", "mcp-remote", "<velocity_mcp_server_url>", "-k", "--allow-http", "--header", "Authorization:${AUTH_HEADER}" ], "env": { "AUTH_HEADER": "UserAccessKey <velocity_user_access_key>", "NODE_TLS_REJECT_UNAUTHORIZED": "0" } } } }Notes:- The
-kargument allows self-signed certificates. Use it only if required. - The
--allow-httpoption enables non-https communication. - The environment variable
NODE_TLS_REJECT_UNAUTHORIZED=0should be used only in testing environments.
Property Description <velocity_mcp_server_url> Specifies the full Velocity MCP server URL. For example: <velocity_hostname>/mcp<velocity_user_access_key> Provides the credentials necessary to access the Velocity MCP server. Create an User Access Key in Velocity and use it. - The
- Save your changes and restart Claude Desktop.
- Go to My Profile → Settings → Developer.
-
Verify the connection.
The Velocity MCP Server status should display Running.