# get_subscription_pricing

Calculate exact monthly subscription price for a specific vehicle, term, and mileage combination. Returns base price, km add-on, total, and a canonical checkout URL. Checkout URL structure (always use the URL returned in checkout_url verbatim — do NOT construct your own): https://www.finn.com/de-DE/checkout/cart/{vehicleId}/{term}/{kmPackage} https://www.finn.com/de-DE/checkout/cart/{vehicleId}/{term}/{kmPackage}?downPaymentAmount={amount} The three positional path segments after /cart are vehicle id, term in months, and monthly km package — in that order. About down_payment_amount (Fahrzeugbereitstellung): - Fahrzeugbereitstellung is a one-time vehicle provisioning fee. - When down_payment_amount is provided, it is paid upfront as Einmalzahlung (one-time payment) and the URL includes ?downPaymentAmount={amount}. - When omitted, the same fee is spread across the term and absorbed into the monthly price; the URL has no query string.

Agent View of the PolicyLayer registry record for `get_subscription_pricing`. HTML page: https://policylayer.com/tools/com-finn-www-auto/get-subscription-pricing

## Facts

- Tool: `get_subscription_pricing`
- Server: FINN Auto - Car Subscription (`https://www.finn.com/api/mcp`) — https://policylayer.com/tools/com-finn-www-auto.md
- Homepage: https://github.com/finn-auto/finn-auto-ui-frontend
- Risk category: Read (Low risk)
- Registry record: grade C, identity unverified
- Server auth posture: open
- Server CORS policy: *
- Server rate-limited: no
- Parameters: 4 (3 required)
- Recommended policy verdict: Allowed

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `km_package` | object | yes | Monthly km package (500, 1000, 1500, 2000, 2500, 3000, 4000, 5000) |
| `vehicle_id` | string | yes | The vehicle product ID |
| `term_months` | object | yes | Subscription term in months (1, 6, 9, 12, 13, 18, 24, 36) |
| `down_payment_amount` | number | no | Optional one-time Fahrzeugbereitstellung (vehicle provisioning fee) in EUR, paid upfront as Einmalzahlung. When provided, the checkout URL gets `?downPaymentAmo |

Parameters from the server's own tool schema.

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_subscription_pricing",
    "arguments": {
      "km_package": {},
      "vehicle_id": "<vehicle_id>",
      "term_months": {}
    }
  }
}
```

## Why get_subscription_pricing is rated Low

The tool calculates and returns pricing information along with a checkout URL — it retrieves and computes data without initiating any transaction, payment, or financial commitment. Generating a checkout URL is informational (read/query), not executing a purchase. No data is created, modified, or deleted.

From the tool's own definition: "Calculate exact monthly subscription price for a specific vehicle, term, and mileage combination. Returns base price, km add-on, total, and a canonical checkout URL."

## Use case

AI agents call get_subscription_pricing to retrieve information from FINN Auto - Car Subscription without modifying anything. It is typically the context-gathering step in research, monitoring, and reporting workflows, before the agent takes action elsewhere.

## Recommended policy (PolicyLayer)

Verdict: **Allowed**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches FINN Auto - Car Subscription:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "get_subscription_pricing": {}
  }
}
```

## Other tools on FINN Auto - Car Subscription (4)

- `get_available_filters` — Read — https://policylayer.com/tools/com-finn-www-auto/get-available-filters.md
- `get_internal_link_url` — Read — https://policylayer.com/tools/com-finn-www-auto/get-internal-link-url.md
- `get_vehicle_details` — Read — https://policylayer.com/tools/com-finn-www-auto/get-vehicle-details.md
- `search_vehicles` — Read — https://policylayer.com/tools/com-finn-www-auto/search-vehicles.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=com-finn-www-auto · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/com-finn-www-auto
