1acre.in
India's first Land Intelligence MCP Lookup survey numbers for any location in india
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноТолько чтение
Что умеет
- Get Lookup Quota: How many survey number lookups the signed-in user has left. Free to call — costs nothing. Call this BEFORE create_survey_number_report or identify_parcel_at_point, and tell the user
- Browse Locations: Walk the location hierarchy to find the exact codes a survey lookup needs. Free to call — costs nothing. Supply what you know and it returns the next level down: nothing → states; st
- List Survey Numbers: Which survey numbers exist in a given village. Free to call — costs nothing. Use this to confirm a survey number exists BEFORE calling create_survey_number_report, which permanent
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
India's first Land Intelligence MCP
Lookup survey numbers for any location in india
Список инструментов сервера (7)
Технические названия из tools/list. Нужны только разработчикам.
| get_lookup_quota | How many survey number lookups the signed-in user has left. Free to call — costs nothing. Call this BEFORE create_survey_number_report or identify_parcel_at_point, and tell the user how many lookups they have, because each of those permanently consumes one and cannot be undone. |
| browse_locations | Walk the location hierarchy to find the exact codes a survey lookup needs. Free to call — costs nothing. Supply what you know and it returns the next level down: nothing → states; state_code → districts; +district_code → mandals; +mandal → villages. IMPORTANT: villages return BOTH village_name and village_key. Keep both — list_survey_numbers needs the NAME, create_survey_number_report needs the KEY. |
| list_survey_numbers | Which survey numbers exist in a given village. Free to call — costs nothing. Use this to confirm a survey number exists BEFORE calling create_survey_number_report, which permanently consumes a lookup. Takes the village NAME (not the key) — get both from browse_locations. |
| create_survey_number_report | Look up a survey number and produce a land report. ⚠️ COSTS ONE LOOKUP — permanent and cannot be undone. A regular account has only 3 for its lifetime. Before calling: (1) call get_lookup_quota and tell the user what it will cost, (2) confirm the survey number exists via list_survey_numbers, (3) get explicit user confirmation. If this call fails, do NOT retry — the lookup may already be spent. |
| identify_parcel_at_point | Find which survey number / parcel sits at a given latitude and longitude. ⚠️ COSTS ONE LOOKUP — permanent and cannot be undone. Call get_lookup_quota first and get explicit user confirmation before calling this. If it fails, do NOT retry — the lookup may already be spent. |
| get_survey_number_report | Fetch a report the caller previously created. Free — does not consume a lookup. Use when you already have a report id from create_survey_number_report or identify_parcel_at_point and need the details again without paying for a fresh lookup. Returns the same summary shape those tools return. |
| get_report_coordinates | Return only the boundary coordinates for a previously-created report, as JSON. Free — does not consume a lookup. Use this when the caller wants to plot the parcel, compute area, or share coordinates without the full report summary. |