{
"mcpServers": {
"mcp-server-project": {
"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 304 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 Server Project and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Provides three tools for AI assistants: recipe search, points of interest (POI) lookup, and weather information.
git clone <repository-url>
cd mcp-server-project
mvn clean package -DskipTests
# Start PostgreSQL and Redis
docker-compose up -d postgres redis
# Wait for services to be ready
docker-compose ps
For detailed instructions on running the server with a local database and connecting via MCP Inspector, please see the 🧪 Testing section below.
Searches for recipes from a database of 90+ diverse recipes.
Parameters:
query (required): Search term for recipesmaxResults (optional): Maximum results to return (default: 10, max: 50)Example Queries:
"turkish" → Turkish cuisine (Döner, Baklava, Hummus, etc.)"dessert" → Sweet treats (Chocolate Cake, Tiramisu, etc.)"vegan" → Plant-based recipes"comfort" → Comfort food (Mac & Cheese, Pot Pie, etc.)Retrieves recently searched recipes from the database.
Parameters:
limit (optional): Maximum number of recent recipes (default: 10, max: 20)Finds points of interest using real OpenStreetMap data.
Parameters:
lat (required): Latitude (-90 to 90)lon (required): Longitude (-180 to 180)radiusMeters (optional): Search radius (default: 1000, max: 50000)poiType (optional): Filter by typeSupported POI Types:
restaurant, cafe, hospital, school, bank, hotel, museum, police, supermarket, fuel, parking, and more.
Returns all supported POI types for searching.
Retrieves current weather using real Open-Meteo API.
Parameters:
lat (required): Latitudelon (required): LongitudeChecks if weather data is available for a location.
Parameters:
lat (required): Latitudelon (required): LongitudeReturns the attribution text for the weather data source.
src/main/java/com/doksanbir/mcpserver/
├── domain/ # Core business logic
│ ├── entity/ # JPA entities (Recipe)
│ └── valueobject/ # Value objects (RecipeInfo, WeatherInfo, etc.)
├── application/ # Application layer
│ ├── port/
│ │ ├── input/ # Use case interfaces
│ │ └── output/ # Repository & API interfaces
│ └── usecase/ # Use case implementations
├── infrastructure/ # External integrations
│ ├── persistence/ # Database implementations
│ ├── external/ # REAL API clients (Overpass, OpenMeteo)
│ └── cache/ # Redis + In-memory caching
├── adapter/ # Adapters layer
│ └── mcp/tool/ # MCP tools (@Tool annotations)
└── config/ # Spring configuration