@theyahia/superjob-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SUPERJOB_APP_ID | No | Application ID | |
| SUPERJOB_API_KEY | No | Устаревший вариант (fallback для SECRET_KEY) | |
| SUPERJOB_SECRET_KEY | Yes | API secret key (получить на api.superjob.ru) |
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_vacanciesB | Поиск вакансий на SuperJob по ключевым словам, городу, зарплате. |
| get_vacancyB | Полная информация о вакансии SuperJob по ID. |
| search_employersB | Поиск работодателей на SuperJob по названию и городу. |
| get_townsC | Справочник городов SuperJob. Поиск по названию, фильтр по стране. |
| get_professionsB | Справочник профессий/отраслей SuperJob (каталог). |
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 5 tools
Each tool has a uniquely defined purpose: searching vacancies, getting vacancy details, searching employers, accessing town directory, and accessing professions directory. There is no overlap in functionality.
All tool names follow a consistent verb_noun pattern in snake_case: search_vacancies, get_vacancy, search_employers, get_towns, get_professions. The verbs 'search' and 'get' are used appropriately.
5 tools is an appropriate number for a job search API server, covering core search operations for vacancies and employers, plus supporting reference data for towns and professions.
The tool set covers the essential read operations for job searching: search and get for vacancies, search for employers, and reference lookups. While no write operations are provided (e.g., post vacancy, apply), the scope is clearly aligned with a read-only search helper, so no major gaps are apparent.