Skip to main content
Glama

gdebenz-mcp

러시아 주유소에서 휘발유와 디젤을 검색하기 위한 MCP 서버입니다. 두 개의 독립적인 소스gdebenz.rugdebenzi.ru — 운전자들의 실시간 표시가 있는 연료 가용성 커뮤니티 지도를 통합합니다.

여러분의 AI 어시스턴트(Claude, Cursor, OpenClaw 등)가 다음과 같은 질문에 답할 수 있게 합니다:

«힘키 근처에 95 휘발유가 어디 있나요?» «디젤이 있는 가장 가까운 루코일 주유소는 어디이며, 거기에 줄이 있나요?»

두 서비스의 공개 API를 통해 작동합니다. API 키 없음 — Python과 두 개의 패키지만 있으면 됩니다.

두 개의 데이터 소스

소스

제공 내용

gdebenz

가용 상태, 연료 목록, 확인, 신선도(last_at), 신뢰도, 가격

gdebenzi

상태, 대기열 텍스트 («줄 25–50대»), 제한량 (리터), 확인된 연료(fuels_yes/no), 지역 평균 가격, 표시/보고

검색 도구에는 source 매개변수가 있습니다: "gdebenz", "gdebenzi" 또는 "both" (기본값은 both — 최대 적용 범위).


설치

1. 저장소를 클론하세요

git clone https://github.com/ivanegorenkov/gdebenz-mcp.git
cd gdebenz-mcp

2. 종속성을 설치하세요

pip install -r requirements.txt

Python 3.10+가 필요합니다.

3. 서버를 어시스턴트에 연결하세요

Claude Desktopclaude_desktop_config.json을 열거나 생성하세요:

{
  "mcpServers": {
    "gdebenz": {
      "command": "python3",
      "args": ["/АБСОЛЮТНЫЙ/ПУТЬ/gdebenz-mcp/server.py"]
    }
  }
}

Cursor — 프로젝트의 .cursor/mcp.json (또는 전역 ~/.cursor/mcp.json)에서:

{
  "mcpServers": {
    "gdebenz": {
      "command": "python3",
      "args": ["/АБСОЛЮТНЫЙ/ПУТЬ/gdebenz-mcp/server.py"]
    }
  }
}

OpenClaw:

openclaw mcp add gdebenz --command python3 --arg /АБСОЛЮТНЫЙ/ПУТЬ/gdebenz-mcp/server.py

⚠️ /АБСОЛЮТНЫЙ/ПУТЬ/를 저장소가 클론된 실제 경로로 바꾸세요 (폴더 안에서 pwd 명령으로 확인할 수 있습니다).


Related MCP server: opinet-mcp

AI 에이전트를 위한 지침

사용자가 «이 MCP 서버를 설치해 줘»라고 요청하면 다음을 수행하세요:

  1. git clone https://github.com/ivanegorenkov/gdebenz-mcp.git

  2. cd gdebenz-mcp && pip install -r requirements.txt

  3. 사용자의 MCP 호스트(Claude Desktop / Cursor / OpenClaw)를 확인하고 위에 표시된 대로 해당 구성에 gdebenz 항목을 추가하세요 (server.py에 대한 절대 경로 포함).

  4. 호스트/애플리케이션을 다시 시작하세요.

  5. 서버가 보이는지 확인하세요 (OpenClaw에서: openclaw mcp probe gdebenz).

stdio 서버이며 외부 키가 필요하지 않습니다.


제공 기능 (9개 도구)

도구

기능

find_fuel

주요. 장소 근처에서 연료가 있는 주유소 (이름 또는 좌표 기준). 필터: 연료, 네트워크, 상태, 반경, source. 거리순 정렬.

nearby_stations

점 주변의 주유소 (lat/lon + 반경 + source).

stations_with_prices

영역 내 주유소 + 가격 (bbox + source).

search_stations

이름/주소로 주유소 검색.

resolve_location

장소 이름 → 좌표.

get_geoip_location

IP를 통한 내 위치.

get_city_by_coords

좌표로 도시 찾기.

list_fuels

연료 등급: 92 / 95 / 98 / 100 / ДТ.

list_brands

흔한 주유소 네트워크 (필터는 모든 문자열을 허용).

어시스턴트에 대한 예시 요청: find_fuel(location="Химки", fuel="95", brand="Лукойл", source="both").

의미

  • 연료: 92, 95, 98, 100, ДТ. gdebenz에는 fuels_now(쉼표로 구분된 문자열), gdebenzi에는 fuels_yes / fuels_no / fuels_maybe(러시아어 이름의 배열, 예: ["АИ-95", "ДТ"]).

  • 상태: yes — 있음, queue — 있음/대기열, low — 적음, no — 없음, unknown — 알 수 없음, changing — 업데이트 중, dtonly — 디젤만.

  • 최신성: gdebenz에는 last_at, confirmations, confidence(0..1); gdebenzi에는 last_mark(표시 시간), confidence_pct, marks, reports가 있습니다. 두 소스 모두 age_minutesfreshness(«방금 전», «3시간 전»)를 반환합니다.

  • 대기열/제한량 (gdebenzi): queue («줄 25–50대»), limits (등급별 리터 제한).

  • 가격: gdebenz — prices_now[fuel].t(가격 보고 시간); gdebenzi — prices(키 ai92/ai95/ai98/ai100/dt/gas) 및 regional_prices(지역 평균).

API (데이터 출처)

gdebenz.ru

Endpoint

설명

GET /api/nearby?lat=&lon=&radius_km=

점 주변의 주유소

GET /api/stations?lat1=&lon1=&lat2=&lon2=

bbox 내 주유소 + 가격

GET /api/search?q=

텍스트 검색

GET /api/cities?q=

지오코딩

GET /api/geoip

IP 기반 위치

GET /api/reverse-city?lat=&lon=

좌표로 도시 찾기

gdebenzi.ru

Endpoint

설명

GET /api/stations.php?bbox=lon1,lat1,lon2,lat2

bbox 내 주유소 (상태, 대기열, 제한량, 가격, 표시)

라이선스

MIT

A
license - permissive license
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables location-aware AI agents to search for nearby places, get detailed place information including hours and ratings, and calculate routes with turn-by-turn directions using Google Maps APIs.
    21
  • A
    license
    A
    quality
    D
    maintenance
    Provides access to Korea Petroleum Corporation's Opinet fuel price API for South Korea. Enables querying of current national and regional fuel averages, recent price trends, lowest-price stations, and nearby gas station details through natural language.
    MIT

View all related MCP servers

Related MCP Connectors

  • Live Google Maps business search, review, and photo data for AI agents over MCP.

  • Find EV charging stations, detail, and reliability check-ins via the global Open Charge Map.

  • Vanlife & RV travel data. Fuel, weather, currency, events, news. https://openvan.camp/en/developers

View all MCP Connectors

Latest Blog Posts

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/ivanegorenkov/gdebenz-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server