List icon Contents

JxBrowser MCP server

The JxBrowser MCP server allows AI coding agents to create and configure JxBrowser projects. Install it in your MCP client to get a ready-to-use project with your preferred UI toolkit and build tool.

Configuration

The JxBrowser MCP server works over Streamable HTTP transport and can be connected only remotely. To use it, make sure your MCP client supports connections to remote servers over HTTP.

Below are configuration instructions for popular MCP clients.

Cursor

To configure the server in Cursor:

  1. Open Cursor.
  2. Navigate to Settings → Cursor Settings → Tools & MCP.
  3. In the Installed MCP Servers tab, click New MCP Server.
  4. Add the following snippet to your configuration file:
{
  "mcpServers": {
    "jxbrowser": {
      "url": "https://jxbrowser.mcp.teamdev.com/mcp"
    }
  }
}
  1. Save the configuration and verify that the server is enabled.

Claude Code

To configure the server in Claude Code, open your terminal and run the following command:

claude mcp add --transport http jxbrowser https://jxbrowser.mcp.teamdev.com/mcp

JetBrains AI Assistant

To configure the server in JetBrains AI Assistant:

  1. In your JetBrains IDE, go to Settings → Tools → AI Assistant → Model Context Protocol (MCP).
  2. Click + Add.
  3. In the dialog, click Command in the top-left corner and select As JSON from the list.
  4. Add the following configuration:
{
  "mcpServers": {
    "jxbrowser": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote@latest",
        "https://jxbrowser.mcp.teamdev.com/mcp"
      ]
    }
  }
}
  1. Click OK and Apply to save changes.

The AI Assistant doesn’t currently support the Streamable HTTP transport. As a workaround, the mcp-remote package is used to forward its requests to the JxBrowser MCP server. For more details, see the JetBrains AI Assistant documentation.

VS Code

To configure the server in VS Code, add the following snippet to your project’s .vscode/mcp.json file:

{
  "servers": {
    "jxbrowser": {
      "type": "http",
      "url": "https://jxbrowser.mcp.teamdev.com/mcp"
    }
  }
}

Available tools

get-quickstart-guide

Provides a step-by-step guide for creating a JxBrowser project with your chosen UI toolkit and build tool.

Guides generated by this tool include a built-in 10-day trial license, allowing you to test the project without needing a separate license key.

Example prompts:

  • “Create a JxBrowser project with JavaFX and Maven”
  • “I need a Compose Desktop app with JxBrowser”
  • “Set up an SWT application with JxBrowser using Gradle”