This section describes how to integrate Jtest's MCP (Model Context Protocol) server with AI coding agents, such as GitHub Copilot and Codex CLI.

The MCP server exposes Jtest's capabilities — including static analysis rule documentation, violation reporting, and Jtest's feature documentation — directly to AI assistants, enabling context-aware code assistance driven by Jtest analysis results.

The MCP server is located at <INSTALL_DIR>/integration/mcp/.

Prerequisites:

Running the MCP Server Launcher

Run the MCP launcher script for your platform:

When launched, the MCP server starts a local process that communicates over stdio using the Model Context Protocol. The coding agent connects to it and gains access to the following tools:

The server uses the current working directory as the workspace root and stores its local cache in .jtest/jtestmcp/ within that directory.

Integrating with GitHub Copilot

Create or update the .copilot/mcp-config.json file in your user home with the following content:

Windows

{
  "mcpServers": {
    "jtestmcp": {
      "type": "local",
      "command": "<INSTALL_DIR>\\integration\\mcp\\jtestmcp.bat",
      "tools": [
        "*"
      ],
      "args": []
    }
  }
}

Linux / macOS

{
  "mcpServers": {
    "jtestmcp": {
      "type": "local",
      "command": "<INSTALL_DIR>/integration/mcp/jtestmcp",
      "tools": [
        "*"
      ],
      "args": []
    }
  }
}

Integrating with Codex CLI

Create or update the .codex/config.toml file in your home directory or project root with the following content:

Windows

[mcp_servers.jtestmcp]
command = "<INSTALL_DIR>\\integration\\mcp\\jtestmcp.bat"

Linux / macOS

[mcp_servers.jtestmcp]
command = "<INSTALL_DIR>/integration/mcp/jtestmcp"

MCP Server Configuration

The MCP server reads its settings from <INSTALL_DIR>/integration/mcp/etc/jtestmcp.properties. The default configuration is: 

documentation.path=${jtestmcp:root_dir}/jtest-ai-docs.zip
rule.documentation.path=${jtestmcp:root_dir}/jtest-ai-rules.zip
rule.doc.html.location=${jtestmcp:root_dir}/../../rules/doc.zip
product.name=Jtest
These paths are resolved relative to the MCP server root directory and generally do not need to be changed. 

Local Storage

The MCP server stores its runtime cache in the following location:

The workspace directory is automatically set to the current working directory from which the coding agent launches the MCP server process.

Troubleshooting

IssueResolution
Server fails to start
Verify the path in command points to the correct 

Jtest

 installation.
java not found

The launcher uses <INSTALL_DIR>/bin/jre/bin/java.exe automatically. Ensure the Jtest

 installation is complete.
No tools visible in agent
Confirm the MCP server process started without errors. Check the logs in 

.jtest/jtestmcp/

Violations not returnedEnsure the report.xml path passed to the tool is accessible from the workspace directory.
Cache issues

Delete the .jtest/jtestmcp/

 directory to clear the local cache and restart the server.