hotpepper-gourmet-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
hotpepper-gourmet-mcp-server by miyamo2 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 35 | 77 |
| Official | — | ✓ |
| Categories | E-commerceDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | 3 mo ago | this month |
hotpepper-gourmet-mcp-server · Summary
Unofficial MCP server for accessing Hotpepper Gourmet restaurant search APIs via Go implementation.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
hotpepper-gourmet-mcp-server · Use cases
- Find restaurants in specific areas of Japan with various filters
- Access restaurant data and masters for food-related applications
- Integrate restaurant search capabilities into AI assistants
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
hotpepper-gourmet-mcp-server · Install
Installation
Homebrew
brew install miyamo2/tap/hotpepper-gourmet-mcp-serverGo
go install github.com/miyamo2/hotpepper-gourmet-mcp-server@latestFrom Releases
Download from the [releases page](https://github.com/miyamo2/hotpepper-gourmet-mcp-server/releases/latest)
Configuration
Add to your MCP host configuration:
{
"mcpServers": {
"hotpepper-gourmet-mcp-server": {
"command": "hotpepper-gourmet-mcp-server",
"env": {
"HOTPEPPER_GOURMET_API_KEY": "<Hotpepper Gourmet API Key>"
}
}
}
}Setup
- Get API key from [Recruit WEB Services](https://webservice.recruit.co.jp/register)
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything