cafe-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@cafe-mcp-serverRecommend an iced coffee with almond milk and high caffeine for a tired mood."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
cafe-mcp-server
A minimal Python MCP server that recommends coffee from local static data.
This demo does not call external APIs and does not require an API key.
Tools
list_coffee_menu: returns the full static menu.recommend_coffee: recommends one drink from mood, milk, caffeine, and temperature preferences.explain_recommendation: explains a selected drink against the same preference inputs.
Related MCP server: today-top3-mcp
Install
cd /Users/hanlufeng/Desktop/AI-INSIGHT-REPORT/Ceilia/cafe-mcp-server
python -m venv .venv
source .venv/bin/activate
python -m pip install -e ".[dev]"Run
Local stdio MCP server:
cafe-mcp-serverEquivalent module form:
python -m cafe_mcp_server.serverCloud Run / HTTP mode:
PORT=8080 python -m cafe_mcp_server.serverWhen PORT is set, the server automatically uses Streamable HTTP, binds to 0.0.0.0:$PORT, and exposes MCP at:
/mcpYou can also force the transport explicitly:
MCP_TRANSPORT=streamable-http PORT=8080 python -m cafe_mcp_server.server
MCP_TRANSPORT=stdio python -m cafe_mcp_server.serverFor Cloud Run repository deployment with Buildpacks:
Build type: Buildpacks
Build context directory:
/Entrypoint: leave blank if Buildpacks uses the included
Procfile, or setpython -m cafe_mcp_server.serverFunction target: leave blank
Example MCP config
{
"mcpServers": {
"cafe-recommendation": {
"command": "python",
"args": [
"-m",
"cafe_mcp_server.server"
],
"cwd": "/Users/hanlufeng/Desktop/AI-INSIGHT-REPORT/Ceilia/cafe-mcp-server"
}
}
}If the package is installed into the same Python environment used by the MCP client, the console script can be used instead:
{
"mcpServers": {
"cafe-recommendation": {
"command": "cafe-mcp-server"
}
}
}Development
pytest
python -m compileall src tests
PYTHONPATH=src python -c "from cafe_mcp_server.recommender import recommend_coffee; print(recommend_coffee(mood='smooth iced', prefer_milk=False)['name'])"Command-line MCP tool test
After installing the project, call the MCP server through a stdio client:
python scripts/call_tool.py recommend_coffee --args '{"mood":"smooth iced","prefer_milk":false,"caffeine":"high","temperature":"cold"}'Expected result includes:
{
"id": "cold_brew",
"name": "Cold Brew"
}Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server for Starbucks — let AI agents search the menu, customize drinks, find stores, place mobile pickup orders, and manage Starbucks Rewards.Last updated16191MIT
- Alicense-qualityCmaintenanceA situational local recommendation MCP server that classifies user mood, energy, time, and budget to generate three actionable choices with search keywords and disclosure policy.Last updatedMIT
- Flicense-qualityBmaintenanceEnables coffee shop order management via MCP, including menu lookup, order creation, and status tracking.Last updated
- AlicenseAqualityBmaintenanceA read-only MCP server that wraps the coffee.pryzm.gg public API to calculate effective prices of coffee drinks after discounts, enabling users to find the cheapest coffee deals, search for discounts, and verify receipt prices.Last updated32MIT
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
Hosted MCP server to manage a restaurant menu from AI agents - 39 tools over the DuckHub API.
MCP server exposing Kettle Logic insight articles & industry guidance as tools + resources.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hanluOMH/cafe-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server