rcs-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| znajdz_obszarA | Wyszukuje województwo/powiat/gminę/miasto/wieś po nazwie i zwraca jej bbox. Użyj wyniku ( Args: nazwa: Szukana nazwa, np. "Warszawa", "Zakopane", "Zalipie". poziom: "wojewodztwo", "powiat", "gmina", "miasto" (domyślnie) lub "wies". Pierwsze wyszukanie na danym poziomie buduje lokalny cache z danych GUGIK (PRG/PRNG). Zwykle cache jest już rozgrzany po starcie serwera, ale jeśli nie — narzędzie zwróci komunikat, że budowa trwa w tle; wtedy po prostu powtórz to samo wywołanie za kilkadziesiąt sekund. |
| wyszukaj_transakcjeA | Zwraca rzeczywiste transakcje nieruchomościami (z aktów notarialnych) w danym obszarze. Obszar ( Args:
bbox: Ramka (south, west, north, east) w EPSG:4326, np. z |
| statystyki_cenA | Liczy statystyki ceny za m² na podstawie próby rzeczywistych transakcji w danym obszarze. Wartości odstające są odrzucane (reguła Tukeya na logarytmie ceny), więc
zwracane Args:
bbox: Ramka (south, west, north, east) w EPSG:4326, np. z |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: znajdz_obszar resolves a name to a bounding box, wyszukaj_transakcje returns raw transaction records, and statystyki_cen computes aggregated price statistics. There is no overlap in functionality, so an agent can easily select the right tool for the intended step.
All names use lowercase snake_case and are concise Polish terms, but the pattern is not perfectly uniform: znajdz_obszar and wyszukaj_transakcje are verb_noun, while statystyki_cen is noun_noun. This is a minor deviation from a consistent verb-first convention and still readable.
With only 3 tools, the server is tightly focused on querying real estate transactions. Each tool is essential and fills a distinct role in the workflow (geocoding, raw data, statistics), so the count is well-scoped and not too thin.
The toolset forms a complete pipeline for the domain: find an area by name, then use the returned bbox to either fetch raw transactions or compute price statistics. Since this is a read-only data service, there are no obvious missing lifecycle operations, and agents can accomplish the intended tasks without dead ends.