MCP server (http-streamable) for the Cezzis.Com website project written in Golang. Supports tools access to cocktail data and for managing a users own account using OAuth device activation flows.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"cezzis-cocktails": {
"url": "http://localhost:3001/mcp",
"type": "http"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Part of the broader Cezzis.com digital experience for discovering and sharing cocktail recipes with a broad community of cocktail enthusiasts and aficionados.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
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 entertainment
The official MCP Server for the Mux API
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal E…
Unity MCP Server — 268 tools for AI-assisted game development. Connect Claude, Cursor, or any MCP client to Unity Editor & Unity Hub. Scene management, GameObjects, components, builds, profiling, Shader Graph, Amplify, terrain, physics, NavMesh, animation, MPPM multiplayer & more. Free & open source by AnkleBreaker Studio.
A Model Context Protocol (MCP) server that gives Claude direct control over Strudel.cc for AI-assisted music generation and live coding.
MCP Security Weekly
Get CVE alerts and security updates for Cezzis Com Cocktails Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Part of the broader Cezzis.com digital experience for discovering and sharing cocktail recipes with a broad community of cocktail enthusiasts and aficionados.
This repository contains the Go-based MCP server for Cezzis.com cocktails. It exposes a streamable HTTP MCP interface that lets MCP clients search cocktail data, retrieve cocktail details, authenticate against Auth0, and submit user ratings through the Cezzis platform APIs.
The server is an integration layer, not the source of cocktail data. It registers MCP tools, forwards requests to the upstream Cocktails, AI Search, and Accounts APIs, stores authentication tokens in PostgreSQL per MCP session, and emits telemetry through OpenTelemetry.
Primary capabilities:
mark3labs/mcp-go.iac/k8s.iac/terraform.
├── .iac/
│ ├── argocd/ # Argo CD manifests for cluster sync
│ ├── k8s/ # Local Kubernetes deployment manifests
│ └── terraform/ # Production Azure infrastructure
├── .vscode/ # IDE launch configuration
├── cocktails.mcp/
│ ├── http-client.env.json
│ └── src/
│ ├── cmd/ # Application entry point
│ └── internal/
│ ├── api/ # Generated API clients
│ ├── auth/ # Auth0 flow and token handling
│ ├── db/ # PostgreSQL connection and setup
│ ├── mcpserver/
│ ├── middleware/
│ ├── repos/
│ ├── telemetry/
│ └── tools/ # MCP tool definitions and handlers
├── Dockerfile
├── makefile
└── mcp.http
| Method | Path | Description |
|---|---|---|
| GET | /mcp/v1/health/ping | Basic health check returning {"status": "ok"} |
| GET | /mcp/v1/health/readiness | Readiness probe returning {"status": "ready"} |
| GET | /mcp/v1/health/liveness | Liveness probe returning {"status": "alive"} |
| GET | /mcp/v1/health/version | Build version response |
| GET | /mcp/v1/mcp |