{
"mcpServers": {
"spring-monitoring-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 156 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Spring Monitoring Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Let AI agents monitor your Spring Boot services using the Model Context Protocol (MCP).
This is a production-ready MCP server that allows AI agents (Claude Code, etc.) to:
HttpClient with configurable timeoutsmvnw wrapper)cd /absolute/path/to/spring-monitoring-mcp-server
./mvnw clean compile
Add this MCP server to your Claude Code settings file (~/.claude/settings.json):
{
"mcpServers": {
"spring-monitoring": {
"command": "/absolute/path/to/spring-monitoring-mcp-server/run-mcp-server.sh"
}
}
}
Or create a local .mcp.json file in your project:
{
"mcpServers": {
"spring-monitoring": {
"command": "/absolute/path/to/spring-monitoring-mcp-server/run-mcp-server.sh"
}
}
}
http://localhost:3450/tools/checkServiceHealth
{
"serviceUrl": "http://localhost:{your-running-application-port}"
}
or test the metrics endpoint:
http://localhost:3450/tools/getServiceMetrics
{
"serviceUrl": "http://localhost:{your-running-application-port}"
}
Start Claude Code and ask:
Check the health of my service at http://localhost:{your-running-application-port}
or
Get metrics from http://localhost:{your-running-application-port}
checkServiceHealthCheck if a Spring Boot service is up and measure its response time.
Input:
{
"serviceUrl": "http://localhost:{your-running-application-port}"
}
Output:
{
"serviceUrl": "http://localhost:{your-running-application-port}",
"status": "UP",
"statusCode": 200,
"responseTimeMs": 45,
"body": {
"status": "UP",
"components": {...}
}
}
getServiceMetricsFetch Spring Boot Actuator metrics from a service.
Input:
{
"serviceUrl": "http://localhost:{your-running-application-port}"
}
Output:
{
"serviceUrl": "http://localhost:{your-running-application-port}",
"status": "UP",
"statusCode": 200,
"responseTimeMs": 32,
"metrics": {
"names": ["jvm.memory.used", "http.server.requests", ...]
}
}
This MCP server uses a stdio transport model:
Claude Code <--JSON-RPC 2.0--> MCP Server <--HTTP--> Your Spring Boot Services
(stdio) (REST)
/actuator/health/actuator/metricsclaude mcp list
You should see spring-monitoring in the list.
... [View full README on GitHub](https://github.com/heyEdem/spring-monitoring-mcp-server#readme)