🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@gera-services/mcp-geraeats

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gera-services/mcp-geraeats

MCP server for GeraEats food delivery — browse restaurants, view menus, search dishes, and place delivery orders across 50+ countries

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

@gera-services/mcp-geraeats

MCP (Model Context Protocol) server for GeraEats -- the food delivery marketplace by Gera Services.

Enables AI assistants (Claude, ChatGPT, etc.) to browse restaurants, view menus, search dishes by cuisine or dietary preference, place delivery orders, and track deliveries across 50+ countries.

Tools

ToolDescriptionAuth Required
search_restaurantsSearch restaurants by cuisine, location, and ratingNo
get_restaurant_detailsGet full restaurant details (hours, delivery zones, minimum order)No
get_menuGet a restaurant's full menu with categories, prices, and dietary tagsNo
search_menu_itemsSearch dishes across all restaurants by name or dietary preferenceNo
place_orderPlace a food delivery orderYes
track_orderTrack order status with rider location and ETAYes
get_order_historyGet past orders for the user with pagination and date filteringYes

Installation

npm install @gera-services/mcp-geraeats

Usage

With Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "geraeats": {
      "command": "npx",
      "args": ["@gera-services/mcp-geraeats"]
    }
  }
}

With a custom API endpoint

{
  "mcpServers": {
    "geraeats": {
      "command": "npx",
      "args": ["@gera-services/mcp-geraeats"],
      "env": {
        "GERAEATS_API_URL": "https://your-api-url.example.com"
      }
    }
  }
}

Standalone

npx @gera-services/mcp-geraeats

Configuration

Environment VariableDescriptionDefault
GERAEATS_API_URLBase URL for the GeraEats APIhttps://api.geraeats.com

Multi-Country Support

GeraEats operates across 50+ countries. Pass a country code (ISO 3166-1 alpha-2) to any tool to scope results to that country. Supports proximity search via latitude/longitude for finding nearby restaurants.

Dietary Filtering

The search_menu_items tool supports filtering by dietary preference: vegetarian, vegan, halal, gluten-free, and dairy-free.

Authentication

Browse, search, and menu tools work without authentication. Placing orders and tracking require a user bearer token passed via the auth_token parameter.

License

MIT

Keywords

mcp

FAQs

Package last updated on 24 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts