{
"mcpServers": {
"mcp-greeting-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.
Test mcp server
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 48 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 Mcp Greeting Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides greeting functionality, built with Java 25, Gradle, and Spring AI.
This server implements the Model Context Protocol to provide greeting-related tools and resources. It can be integrated with MCP-compatible clients to add greeting capabilities to AI assistants.
This server is published on the MCP Registry and can be installed directly:
Using Docker:
{
"mcpServers": {
"greeting": {
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/yotamfreund-eng/mcp-greeting-server:latest"]
}
}
}
Add this to your Claude Desktop configuration file:
%APPDATA%\Claude\claude_desktop_config.json~/Library/Application Support/Claude/claude_desktop_config.json~/.config/Claude/claude_desktop_config.json# Build (Windows)
gradlew.bat build
# Run
gradlew.bat bootRun
# Or use convenience scripts
scripts\build.bat
scripts\start.bat
Clone the repository:
git clone https://github.com/yourusername/mcp-greeting-server.git
cd mcp-greeting-server
Build the project using Gradle:
./gradlew build
For Windows:
gradlew.bat build
Note: If you have multiple Java versions installed, run scripts\set-java-25.bat first on Windows to ensure Java 25 takes priority.
The server can be packaged as a Docker/OCI container image for deployment to the MCP registry or container platforms.
# Build Docker image with full MCP registry labels
scripts\build-image.bat
Or using Gradle directly:
gradlew.bat buildDockerImage
This uses the Dockerfile and includes all MCP registry metadata labels:
mcp.protocol.versionmcp.server.namemcp.server.versionmcp.transportRun with STDIO transport (MCP registry standard):
docker run -i --rm mcp-greeting-server:latest
The --rm flag automatically removes the container when it stops (recommended for most use cases).
Run with HTTP/SSE transport:
docker run -p 8080:8080 -e SPRING_PROFILES_ACTIVE=d
... [View full README on GitHub](https://github.com/yotamfreund-eng/mcp-greeting-server#readme)