Skip to main content
Glama

Porsche Service Calculator (Garage Kuhn)

Server Details

Next Porsche service date, mileage and scope from public Porsche maintenance plans. Read-only.

If you are the author of this connector, you can claim ownership by verifying the domain or GitHub account it belongs to. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A3.6/5.0

Scored across 5 tools

Disambiguation3/5

There is notable overlap: search can return a ready calculation, porsche_service_berechnen also calculates, and porsche_service_erinnerung duplicates the reminder already included in porsche_service_berechnen. The descriptions help clarify intended primary uses, but an agent could still misselect between calculation and reminder tools.

Naming Consistency3/5

Three tools use a consistent German porsche_* snake_case pattern (porsche_service_berechnen, porsche_service_erinnerung, porsche_wartungsplaene), but fetch and search are generic English verbs without the prefix. The mix is readable but not a single predictable convention.

Tool Count5/5

Five tools is well scoped for a Porsche service calculator: search, fetch, list plans, calculate service, and generate a reminder. The set is compact without being trivially thin.

Completeness4/5

The tools cover plan discovery, plan retrieval, service calculation, and reminder/calendar generation. A minor gap is direct retrieval of a full plan by plan_id outside search, and booking is only linked rather than performed, but agents can work around these limitations.

Available Tools

5 tools
fetchWartungsplan oder Berechnung abrufenA
Read-onlyIdempotent
Inspect

Ruft einen Treffer aus search ab: den ganzen Porsche-Wartungsplan (alle Arbeiten je Service und Zusatzwartung, Wortlaut Porsche mit Seitenzahl, Quelle) oder eine Berechnung. Fetches a search result: a full Porsche maintenance plan or a calculation.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesid aus search.

TDQS

A3.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, destructiveHint=false, and openWorldHint=false, so the safety profile is covered. The description adds value beyond that by disclosing the return content in detail - the complete plan with all work per service plus Zusatzwartung, original Porsche wording, page number and source - which matters given there is no output schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The purpose is front-loaded, but the same content is stated twice, once in German and once in English, which effectively doubles the length without adding meaning. It is not fatally bloated, but the bilingual duplication is not fully earning its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-parameter fetch tool with annotations that cover the safety profile and no output schema, the description supplies the necessary return-content details (full plan vs. calculation, source and page references). It is complete enough to call correctly, with only minor room for authentication or retrieval-behavior notes.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% and the single parameter 'id' is documented in the schema as 'id aus search', so the baseline is 3. The description reinforces that the id identifies a search hit but adds no format, type, or sourcing detail beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb+resource: it retrieves ('Ruft ... ab') one hit from search, returning either a full Porsche maintenance plan or a calculation. It ties itself to the sibling 'search' as the source and names what the fetched object contains, so an agent can distinguish it from search or the other porsche_* tools. It does not explicitly contrast with porsche_wartungsplaene, keeping it short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'einen Treffer aus search ab' implies the intended workflow (call search first, then fetch a specific hit by id), which is decent implied usage. However there is no explicit when-to-use statement, no when-not, and no direct comparison to the sibling alternative 'search' or 'porsche_wartungsplaene'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

porsche_service_berechnenPorsche-Service berechnenB
Read-onlyIdempotent
Inspect

Berechnet für einen Porsche, welcher Service als Nächstes fällig ist (wann, bei wie vielen km), den Grundumfang und die dann fälligen Zusatzwartungen im Wortlaut von Porsche mit Seitenlink, die folgenden Services und einen Buchungslink der Garage Kuhn, der die Fahrzeugangaben mitbringt. Das Auto als modell (freier Text), baureihe oder plan_id angeben. Enthält eine Erinnerung (Datum, Text, Kalenderdatei). Richtwert ohne Gewähr. Calculates which service a Porsche needs next (when, at what mileage, all tasks in Porsche's wording) with a booking link and a reminder.

ParametersJSON Schema
NameRequiredDescriptionDefault
kmYesAktueller km-Stand. Current mileage in km.
modellNoStatt plan_id oder baureihe: das Auto in freien Worten, z. B. «997 Carrera S», «991.2 GT3 RS», «Cayman GT4», «Cayenne 955 Turbo». Car in free text, e.g. "997 Carrera S".
plan_idNoPlan-ID aus porsche_wartungsplaene.
baureiheNoStatt plan_id: Baureihe (911, 911 GT, Boxster und Cayman, Panamera, Cayenne, Macan, Taycan), der Plan wird nach dem Jahr der 1. Inverkehrsetzung gewählt. Model line.
varianteNoOptional: Nummer der Variante aus porsche_wartungsplaene (nur Pläne mit Varianten, z. B. 0 = erste Variante).
km_pro_jahrNoOptional: Fahrleistung pro Jahr für die Vorschau, Standard 10000.
erstzulassungYes1. Inverkehrsetzung als JJJJ-MM (Fahrzeugausweis Ziffer 36), auch 03.2009 oder «März 2009», nicht in der Zukunft. First registration, e.g. 2009-03.
letzter_serviceNoOptional: Monat des letzten Service als JJJJ-MM, nicht vor der 1. Inverkehrsetzung und nicht in der Zukunft. Ohne Angabe rechnet der Rechner mit Service nach Porsche-Raster. Month of the last service (optional).
letzter_service_kmNokm-Stand beim letzten Service, höchstens der aktuelle km-Stand. Pflicht, wenn letzter_service angegeben ist.

TDQS

B3.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, and openWorldHint=false, so the safety profile is clear. The description adds valuable behavioral context beyond annotations: it details returned content (next service timing/mileage, Porsche's wording with page link, following services, Garage Kuhn booking link with vehicle data, reminder with date/text/calendar file) and includes a disclaimer ('Richtwert ohne Gewähr').

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose, but it is long, bilingual, and somewhat redundant: the English sentence repeats a subset of the German output details and omits several specifics. Parameter guidance and disclaimer are interleaved, reducing structural clarity for a complex tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema exists, so the description must explain return values; it does so in detail, covering next service, maintenance scope, links, and reminder contents. With 100% schema coverage for parameters and annotations covering safety, the remaining gap is minor: it does not clarify how this tool relates to sibling porsche_service_erinnerung or whether it creates a reminder versus merely including reminder data.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all nine parameters are already documented with examples, enums, and constraints. The description only restates the alternative car specification modes ('modell', 'baureihe', 'plan_id') without adding syntax, format, or interaction rules beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb ('Berechnet' / 'Calculates') and resource (Porsche service due next), including output scope: next service timing/mileage, tasks in Porsche wording, booking link, reminder. It distinguishes itself from a simple plan lister by describing computed results, though it does not explicitly name sibling tools like porsche_wartungsplaene as alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides parameter input modes (modell, baureihe, plan_id) but no when-to-use guidance, prerequisites, or explicit comparison to sibling tools such as porsche_wartungsplaene or porsche_service_erinnerung. An agent must infer that this tool is for calculating a service schedule rather than fetching plans or managing reminders.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

porsche_service_erinnerungService-ErinnerungA
Read-onlyIdempotent
Inspect

Liefert eine Service-Erinnerung für einen Porsche: Datum (vier Wochen vor dem nächsten Service nach Porsche-Plan, spätestens nach einem Jahr für den Jahresservice), Titel, Text mit Buchungslink der Garage Kuhn und eine Kalenderdatei (.ics) mit Alarm am Vortag um 9 Uhr. Für Erinnerungen und die Planung von Wartungen. Gleiche Angaben wie porsche_service_berechnen. Returns a service reminder (date, text, calendar file) for a Porsche.

ParametersJSON Schema
NameRequiredDescriptionDefault
kmYesAktueller km-Stand. Current mileage in km.
modellNoStatt plan_id oder baureihe: das Auto in freien Worten, z. B. «997 Carrera S», «991.2 GT3 RS», «Cayman GT4», «Cayenne 955 Turbo». Car in free text, e.g. "997 Carrera S".
plan_idNoPlan-ID aus porsche_wartungsplaene.
baureiheNoStatt plan_id: Baureihe (911, 911 GT, Boxster und Cayman, Panamera, Cayenne, Macan, Taycan), der Plan wird nach dem Jahr der 1. Inverkehrsetzung gewählt. Model line.
varianteNoOptional: Nummer der Variante aus porsche_wartungsplaene (nur Pläne mit Varianten, z. B. 0 = erste Variante).
km_pro_jahrNoOptional: Fahrleistung pro Jahr für die Vorschau, Standard 10000.
erstzulassungYes1. Inverkehrsetzung als JJJJ-MM (Fahrzeugausweis Ziffer 36), auch 03.2009 oder «März 2009», nicht in der Zukunft. First registration, e.g. 2009-03.
letzter_serviceNoOptional: Monat des letzten Service als JJJJ-MM, nicht vor der 1. Inverkehrsetzung und nicht in der Zukunft. Ohne Angabe rechnet der Rechner mit Service nach Porsche-Raster. Month of the last service (optional).
letzter_service_kmNokm-Stand beim letzten Service, höchstens der aktuelle km-Stand. Pflicht, wenn letzter_service angegeben ist.

TDQS

A3.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already cover read-only, idempotent, non-destructive, and closed-world behavior, so the description is not required to restate safety. It adds meaningful behavioral detail: the reminder date is computed four weeks before the next service, at latest one year for the annual service, and the output includes a calendar file with an alarm the day before at 9 AM. It does not describe error handling or edge cases, but the core behavior is well disclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the main purpose and output details, so an agent can quickly understand the tool. It is somewhat redundant because the final English sentence repeats the core purpose already stated in German, but the structure remains efficient overall.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given nine parameters, no output schema, and rich annotations, the description does a good job of explaining what is returned: date, title, text, booking link, and calendar file. It also explains the date calculation rule. It does not resolve the complex relationship among modell, plan_id, baureihe, and variante, but the schema descriptions cover those parameters.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all nine parameters thoroughly, including enums, formats, and constraints. The description adds no parameter-level meaning beyond that, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: it returns a service reminder for a Porsche, including concrete outputs such as date, title, text, booking link, and an .ics calendar file. It references the sibling porsche_service_berechnen, but does not clearly explain why an agent should choose this tool over that sibling beyond mentioning reminders and maintenance planning.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'Für Erinnerungen und die Planung von Wartungen' gives an implied usage context, but there is no explicit when-to-use or when-not-to-use guidance relative to porsche_service_berechnen or the other siblings. The comparison to porsche_service_berechnen is ambiguous because it says 'same details' rather than distinguishing the use case.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

porsche_wartungsplaenePorsche-Wartungspläne der Garage KuhnB
Read-onlyIdempotent
Inspect

Listet die Porsche-Wartungspläne, mit denen der Service-Rechner der Garage Kuhn AG rechnet: Plan-ID, Baureihen, Zeitraum, Herausgeber (Porsche Schweiz oder Deutschland), Generation und Varianten mit Nummer. Optional nach Baureihe filtern. Lists the Porsche maintenance plans used by the Garage Kuhn service calculator.

ParametersJSON Schema
NameRequiredDescriptionDefault
baureiheNoNur Pläne dieser Baureihe.

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, openWorldHint=false and destructiveHint=false, so the agent knows this is a safe, closed-world read. The description adds useful context about the data's provenance (Garage Kuhn AG service calculator) and its scope (Porsche Schweiz or Deutschland editions), but says nothing about result volume, ordering, or pagination.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The German sentence is front-loaded and information-dense, but the trailing English sentence is a pure restatement of the opening clause and earns little. One clear sentence would have sufficed, making the two-sentence form mildly redundant.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple, zero-required-parameter reference-list tool with no output schema, the description compensates well by naming the returned fields and the data source. Only minor gaps remain (ordering, count, whether the list is exhaustive), which are not critical to correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% and the single enum parameter is fully documented in the schema ("Nur Pläne dieser Baureihe." with enumerated values). The description restates the filter as optional, which is mildly useful, but adds no syntax or semantics beyond the schema, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb (listet) and resource (Porsche-Wartungspläne) and even enumerates the fields returned (Plan-ID, Baureihen, Zeitraum, Herausgeber, Generation, Varianten). It implicitly distinguishes itself from the compute-oriented siblings (porsche_service_berechnen, porsche_service_erinnerung) by being the reference-data lookup, but never names them explicitly.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

"Optional nach Baureihe filtern" tells the agent the filter exists and is optional, and the mention of the service calculator implies the plan IDs feed later lookups. However, there is no explicit statement of when to call this versus porsche_service_berechnen or porsche_service_erinnerung, so usage is only implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 5 tool updates
    • First observedfetch
    • First observedporsche_service_berechnen
    • First observedporsche_service_erinnerung
    • First observedporsche_wartungsplaene
    • First observedsearch

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Enables read-only access to BMW CarData for vehicle maintenance, tire pressure, and 12V battery status, with caching and local history to stay within the daily API quota.
    12
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP server for consulting DEKRA vehicle assessment reports (LCD - Damage Classification) from an official source. Enables AI assistants to retrieve vehicle damage classification data through a single read-only tool.
    MIT
  • A
    license
    C
    quality
    D
    maintenance
    Enables access to comprehensive vehicle information including VIN decoding, license plate OCR, vehicle history checks (theft, title, salvage records), market valuations, specifications, and warranty data for vehicles across North America and Europe.
    61
    1
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources