Test mcp server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"greeting": {
"args": [
"run",
"-i",
"--rm",
"ghcr.io/yotamfreund-eng/mcp-greeting-server:latest"
],
"command": "docker"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides greeting functionality, built with Java 25, Gradle, and Spring AI.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
greeting_templatesAccess to greeting templates
greeting://templates
greeting_stylesDifferent greeting styles and formats
greeting://styles
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
Autonomous spec-to-product coding-agent CLI with an MCP server exposing 34 tools over stdio.
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)