Install
$ agentstack add mcp-jolokia-jolokia-mcp-server β scanned Β· β verified, works with Claude Code, Cursor, and more.
Security review
β PassedNo issues found. Passed automated security review. Β· v0.1.0 How review works β
- β Prompt-injection patterns
- β Secret / credential exfiltration
- β Dangerous shell & filesystem operations
- β Untrusted network calls
- β Known-malicious package signatures
What it can access
- β Network access No
- β Filesystem access No
- β Shell / process execution No
- β Environment & secrets No
- β Dynamic code execution No
From automated source analysis of v0.1.0. βUsedβ means the capability is present in the source β more access means more to trust, not that itβs unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work βAbout
Jolokia MCP Server
[](https://github.com/jolokia/jolokia-mcp-server/actions/workflows/test.yaml)
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](#standalone-mcp-server)
- [JVM Agent 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 nameattribute(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 nameattribute(String): Attribute namevalue(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 nameoperation(String): Operation nameargs(Object[]): Arguments- Output (
String): String representation of the return value of the operation or "null"
Install
Standalone
Download the MCP server runner jar:
To install the Jolokia MCP server to a MCP host, add the following entry to the MCP settings:
{
"mcpServers": {
"jolokia": {
"command": "java",
"args": [
"-jar",
"/jolokia-mcp-0.5.1-runner.jar"
]
}
}
}
Or if you prefer using JBang (no need for downloading the jar with this method):
{
"mcpServers": {
"jolokia": {
"command": "jbang",
"args": [
"org.jolokia.mcp:jolokia-mcp-server:0.5.1:runner"
]
}
}
}
JVM Agent
Download the MCP server javaagent jar:
Then run your Java application with -javaagent option:
java -javaagent:jolokia-mcp-agent-jvm-0.5.1-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:
{
"mcpServers": {
"jolokia": {
"httpUrl": "http://localhost:8779/mcp"
}
}
}
Run
Run it with java -jar:
java -jar jolokia-mcp-server-0.5.1-runner.jar [Jolokia URL]
Using JBang, you can directly run it with the Maven GAV (org.jolokia.mcp:jolokia-mcp-server:0.5.1:runner):
jbang org.jolokia.mcp:jolokia-mcp-server:0.5.1:runner
HTTP Transport
By default, this MCP server runs with stdio transport. To switch it to HTTP transport, use the --sse option:
java -jar jolokia-mcp-server-0.5.1-runner.jar --sse
The HTTP transport endpoint by default launches at .
Config Options
| Parameter/Option | Default | Description | | ---------------- | ------- | ----------- | | Positional parameter | http://localhost:8778/jolokia | The Jolokia endpoint URL the MCP server connects to | | --sse | false (stdio) | Enable HTTP transport | | -D*=* | | System properties |
The system properties that are relevant to the MCP server:
| System property | Default | Description | | --------------- | ------- | ----------- | | quarkus.http.port | 8080 | (SSE) The port for the SSE endpoint | | quarkus.mcp.server.sse.root-path | mcp | (SSE) The root path for the SSE endpoint (http://localhost:8080/mcp/sse) | | jolokia.mcp.url | http://localhost:8778/jolokia | Equivalent to the positional parameter | | jolokia.mcp.preferred-http-method | Not set | Preferred HTTP method for Jolokia requests (GET or POST) |
Build
mvn clean install
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source β we do not rehost the code.
- Author: jolokia
- Source: jolokia/jolokia-mcp-server
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.