Skip to main content

Jama Connect Interchange Help

Set up Jama Connect MCP

The process of setting up Jama Connect MCP includes reviewing the prerequisites and completing the configuration steps. It is also helpful to review Supported MCP capabilities, Validated example workflows, and Operational constraints and known limitations.

To configure Jama Connect MCP:

  1. Confirm that Jama Connect MCP access has been enabled for your tenant by Jama Software. If unsure, contact your Customer Success Manager.

  2. Generate the API token:

    1. Log in to Jama Connect and create the MCP OAuth credentials.

      Important

      You must generate new credentials once Jama Connect MCP has been enabled. Pre-existing credentials don't work.

    2. Make sure that your user is enabled in Admin > REST API > Managed Access Control.

    3. Create OAuth Client ID and Secret: Set API credentials.

    4. Store the credentials in a secure place.

  3. To configure a generic MCP-compatible client, use the following example code, replacing the variables the way your MCP client defines or configures Jama Connect MCP. 

    This code snippet was tested against the Copilot plugin in IntelliJ.

    { 
    
      "Jama Connect MCP": { 
    
        "command": "npx", 
    
        "args": [ 
    
          "-y", 
    
          "mcp-remote@latest", 
    
          "/mcp/mcp-core", 
    
          "--host", 
    
          "127.0.0.1", 
    
          "--static-oauth-client-info", 
    
          "" 
    
        ] 
    
      } 
    
    } 

    Replace this...

    With this...

    tenant-url

    Your Jama Connect subdomain.

    <jama-oath-credentials-file>

    File location where you stored your credentials.

    client-id

    Your generated REST API client ID.

    client-secret

    Your generated REST API client secret.

    Example

    @/Users/username/.mcp.auth.json 
    
    { 
    
        "client_id": "", 
    
        "client_secret":"" 
    
    } 
    

    See your MCP client documentation for additional configuration details.

  4. Launch the MCP client:

    1. Log in to the Jama Connect environment linked to Jama Connect MCP.

    2. Launch Jama Connect MCP, following the instructions for your IDE. In many cases, a Start button appears near the server configuration in the mcp.json file.

Jama Connect MCP is now enabled and available for use.