Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Jolokia Mcp Server

    Let LLMs manage your Java application via JMX/Jolokia 🌶️

    11 stars
    Java
    Updated Nov 4, 2025
    ai
    java
    jmx
    jolokia
    mcp
    mcp-server

    Table of Contents

    • Distributions
    • Standalone MCP Server
    • JVM Agent MCP Server
    • Features
    • Tools
    • Install
    • Standalone
    • JVM Agent
    • Run
    • HTTP Transport
    • Config Options
    • Build

    Table of Contents

    • Distributions
    • Standalone MCP Server
    • JVM Agent MCP Server
    • Features
    • Tools
    • Install
    • Standalone
    • JVM Agent
    • Run
    • HTTP Transport
    • Config Options
    • Build

    Documentation

    Jolokia MCP Server

    Test

    MCP server for Jolokia, a JMX-HTTP bridge for Java applications. This MCP server enables an LLM to manage a Java application using JMX API via Jolokia.

    Distributions

    Since version 0.4, the Jolokia MCP Server offers two distinct distributions to suit different deployment needs:

    • Standalone MCP Server
    • JVM Agent MCP Server

    Standalone MCP Server

    The Standalone MCP Server acts as a conventional MCP server; it is registered to the MCP host with either stdio or HTTP, and the MCP server itself communicates with your Java application, which must have a Jolokia agent attached, via JMX over HTTP.

    To use the Standalone MCP Server, you'll first need to attach a Jolokia agent to your Java application. For detailed instructions on how to do this, please refer to the Jolokia manual:

    JVM Agent MCP Server

    In contrast, the JVM Agent MCP Server provides a streamlined, "drop-in" replacement for the standard Jolokia JVM Agent.

    With this distribution, you simply attach the MCP Server's JVM Agent to your application instead of the standard Jolokia JVM Agent. The JVM Agent MCP Server then directly opens an HTTP port for the MCP protocol, effectively transforming your Java application itself into an MCP Server.

    Features

    This MCP server connects to a single JVM at startup and provides the following features on the connected JVM:

    • List MBeans from the connected JVM
    • List operations for a MBean
    • List attributes for a MBean
    • Read/write attributes of a MBean
    • Execute operations on a MBean

    Tools

    This MCP server provides 6 tools.

    • listMBeans
    • List available MBeans from the JVM
    • Output (List): List of all MBean object names in the JVM
    • listMBeanOperations
    • List available operations for a given MBean
    • Inputs:
    • mbean (String): MBean name
    • Output (String): JSON-formatted definitions of all available operations for the given MBean
    • listMBeanAttributes
    • List available attributes for a given MBean
    • Inputs:
    • mbean (String): MBean name
    • Output (String): JSON-formatted definitions of all available attributes for the given MBean
    • readMBeanAttribute
    • Read an attribute from a given MBean
    • Inputs:
    • mbean (String): MBean name
    • attribute (String): Attribute name
    • Output (String): String representation of the given attribute's value or "null"
    • writeMBeanAttribute
    • Set the value to an attribute of a given MBean
    • Inputs:
    • mbean (String): MBean name
    • attribute (String): Attribute name
    • value (Object): Attribute value
    • Output (String): String representation of the given attribute's previous value or "null"
    • executeMBeanOperation
    • Execute an operation on a given MBean
    • Inputs:
    • mbean (String): MBean name
    • operation (String): Operation name
    • args (Object[]): Arguments
    • Output (String): String representation of the return value of the operation or "null"

    Install

    Standalone

    Download the MCP server runner jar:

    • jolokia-mcp-server-0.5.0-runner.jar

    To install the Jolokia MCP server to a MCP host, add the following entry to the MCP settings:

    json
    {
      "mcpServers": {
        "jolokia": {
          "command": "java",
          "args": [
            "-jar",
            "/jolokia-mcp-0.5.0-runner.jar"
          ]
        }
      }
    }

    Or if you prefer using JBang (no need for downloading the jar with this method):

    json
    {
      "mcpServers": {
        "jolokia": {
          "command": "jbang",
          "args": [
            "org.jolokia.mcp:jolokia-mcp-server:0.5.0:runner"
          ]
        }
      }
    }

    JVM Agent

    Download the MCP server javaagent jar:

    • jolokia-mcp-agent-jvm-0.5.0-javaagent.jar

    Then run your Java application with -javaagent option:

    console
    java -javaagent:jolokia-mcp-agent-jvm-0.5.0-javaagent.jar -jar your-app.jar

    This would open the MCP HTTP transport at .

    To register the Jolokia MCP server to a MCP host, add the following entry to the MCP settings:

    json
    {
      "mcpServers": {
        "jolokia": {
          "httpUrl": "http://localhost:8779/mcp"
        }
      }
    }

    Run

    Run it with java -jar:

    console
    java -jar jolokia-mcp-server-0.5.0-runner.jar [Jolokia URL]

    Using JBang, you can directly run it with the Maven GAV (org.jolokia.mcp:jolokia-mcp-server:0.5.0:runner):

    console
    jbang org.jolokia.mcp:jolokia-mcp-server:0.5.0:runner

    HTTP Transport

    By default, this MCP server runs with stdio transport. To switch it to HTTP transport, use the --sse option:

    console
    java -jar jolokia-mcp-server-0.5.0-runner.jar --sse

    The HTTP transport endpoint by default launches at .

    Config Options

    Parameter/OptionDefaultDescription
    Positional parameterhttp://localhost:8778/jolokiaThe Jolokia endpoint URL the MCP server connects to
    --ssefalse (stdio)Enable HTTP transport
    -D*=*System properties

    The system properties that are relevant to the MCP server:

    System propertyDefaultDescription
    quarkus.http.port8080(SSE) The port for the SSE endpoint
    quarkus.mcp.server.sse.root-pathmcp(SSE) The root path for the SSE endpoint (http://localhost:8080/mcp/sse)
    jolokia.mcp.urlhttp://localhost:8778/jolokiaEquivalent to the positional parameter
    jolokia.mcp.preferred-http-methodNot setPreferred HTTP method for Jolokia requests (GET or POST)

    Build

    console
    mvn clean install

    Similar MCP

    Based on tags & features

    • MC

      Mcp Ipfs

      TypeScript·
      11
    • LI

      Liveblocks Mcp Server

      TypeScript·
      11
    • MC

      Mcp Open Library

      TypeScript·
      42
    • BI

      Biomcp

      Python·
      327

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • MC

      Mcp Ipfs

      TypeScript·
      11
    • LI

      Liveblocks Mcp Server

      TypeScript·
      11
    • MC

      Mcp Open Library

      TypeScript·
      42
    • BI

      Biomcp

      Python·
      327

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k