ÖD-Gehaltsrechner & Brutto-Netto MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OED_API_BASE_URL | No | Base URL of the public service information API. Defaults to https://infos-oeffentlicher-dienst.de if not set. | https://infos-oeffentlicher-dienst.de |
| PYTHONIOENCODING | No | Sets the Python I/O encoding (e.g., utf-8) to ensure correct output on all platforms. | |
| OED_INFOPORTAL_API_KEY | Yes | Your free API key for the infos-oeffentlicher-dienst.de portal. Obtain one at https://infos-oeffentlicher-dienst.de/api or /mcp. |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_public_sector_optionsA | Liefert eine Übersicht aller Dienstherren (Bund & 16 Bundesländer) und Tarifverträge (TVöD, TV-L, etc.) mit den verfügbaren Besoldungsgruppen. |
| get_salary_and_zulagen_optionsA | DISCOVERY: Liefert für einen Dienstherrn oder Tarifvertrag und eine Gruppe alle Stufen mit Grundgehalt sowie alle wählbaren Stellenzulagen (Polizei, Justiz etc.), Amtszulagen und Familienzuschlags-Regeln. |
| calculate_agent_salaryA | VOLLSTÄNDIGE ÖD-BERECHNUNG & BMF-PAP: Berechnet das exakte Brutto, Netto und die jährliche Sonderzahlung inklusive ausgewählter Zulagen-IDs und bundeslandspezifischem Familienzuschlag. Die Netto-Ermittlung (Lohnsteuer, Solidaritätszuschlag, Kirchensteuer und Sozialabgaben) erfolgt exakt nach dem aktuellen Programmablaufplan (PAP) des Bundesfinanzministeriums (BMF). |
| calculate_standard_salaryB | DIREKTBERECHNUNG & BRUTTO-NETTO-RECHNER: Berechnet Grundgehalt, Brutto, Netto und Sonderzahlung aus Kerndaten. Unterstützt sowohl Tarif & Besoldung ('beamte', 'tarif', 'aerzte') als auch freie Bruttobeträge ('sonstige' mit 'bruttoGehalt') mit exakter Lohnsteuer- und Sozialversicherungsberechnung nach aktuellem Programmablaufplan (PAP) des Bundesfinanzministeriums (BMF). |
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 4 tools
The two discovery tools are clearly separated as overview vs. detailed options, but calculate_agent_salary and calculate_standard_salary overlap significantly: both provide full gross/net calculations and both appear to cover Beamte/Tarif cases. The descriptions offer some hints (allowance IDs vs. core data), but the boundary is still easy to misread.
All tools follow a consistent lowercase snake_case verb_noun style: get_* for discovery and calculate_* for computation. There are no mixed naming conventions or verb variations.
Four tools is an appropriate size for a focused salary calculator: two discovery steps and two calculation paths. Each tool has a concrete role in the workflow, and the set does not feel padded or incomplete.
The domain is well covered: users can discover employers/tariffs/groups and allowances, then calculate salary with either preselected options or core data. The main shortcoming is redundancy between the two calculation tools rather than a missing operation, and the standard calculator already subsumes much of the agent-specific path.