tsb-kasko-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@tsb-kasko-mcp2024 model Tesla Model Y'nin kasko değeri ne kadar?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
tsb-kasko-mcp — MCP server and CLI for TSB Kasko Value List
An open-source MCP server, command-line tool, and Python client that queries the Kasko Value List published by the Turkish Insurance Association (TSB). You can ask "What is the insured value of a 2025 Audi A3?" from within Claude, ChatGPT, Gemini, and Cursor; type tsb-kasko lookup 2025 "audi a3" in the terminal; or use it as a library in your own Python project.
The kasko value list is the reference amount used to price every comprehensive insurance policy sold in Turkey. It also serves as the basis for the payout in case of total loss (total damage) or theft. This project converts the unauthenticated endpoints used by the TSB website's backend into a typed client.
Interface | How to run | For whom |
MCP server |
| Claude, ChatGPT, Gemini, Cursor |
Command line |
| Terminal, scripts, CI |
Python client |
| Your own application |
When the package is installed, both commands are available; no separate CLI package is needed.
Table of Contents
Related MCP server: Tabela FIPE
What it does
Query the insured value from an AI assistant. Ask in natural language from within Claude, ChatGPT, and Gemini; the model calls the tool and returns the current value.
Query from the terminal. The
tsb-kasko lookup 2025 "audi a3 sportback"command prints the result as a table, JSON, or CSV.Vehicle code for the policy. Results also include the
brand code - model codepair that insurers ask for, e.g.,9-1616.Historical lists. TSB republishes the list every month. You can download the Excel file for past months or search within it.
Python library. Use the
TsbKaskoClientclass directly in your own projects.
Installation
Prerequisite: uv. It also installs Python.
To try without installing:
uvx --from git+https://github.com/hmtkyn/tsb-kasko-mcp tsb-kasko lookup 2025 "audi a3 sportback"For a permanent installation:
uv tool install git+https://github.com/hmtkyn/tsb-kasko-mcpor with pip:
pip install git+https://github.com/hmtkyn/tsb-kasko-mcpThe package has not yet been published on PyPI. Once published,
uv tool install tsb-kasko-mcpandpip install tsb-kasko-mcpwill also work; the publishing workflow is ready in the repository.
For a development installation from the repository, see the Development section.
MCP setup
The server supports both stdio and streamable HTTP transports, so it works with both desktop clients and hosted connectors.
Claude Code
claude mcp add tsb-kasko -- uvx --from git+https://github.com/hmtkyn/tsb-kasko-mcp tsb-kasko-mcpClaude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"tsb-kasko": {
"command": "uvx",
"args": ["--from", "git+https://github.com/hmtkyn/tsb-kasko-mcp", "tsb-kasko-mcp"]
}
}
}Cursor / VS Code
Add the same mcpServers block to .cursor/mcp.json or .vscode/mcp.json in your workspace.
Gemini CLI
Add to ~/.gemini/settings.json:
{
"mcpServers": {
"tsb-kasko": {
"command": "uvx",
"args": ["--from", "git+https://github.com/hmtkyn/tsb-kasko-mcp", "tsb-kasko-mcp"]
}
}
}ChatGPT and other remote clients
ChatGPT connectors reach the server over HTTP. Run the server in HTTP mode:
TSB_KASKO_TRANSPORT=http TSB_KASKO_HOST=0.0.0.0 TSB_KASKO_PORT=8000 tsb-kasko-mcpor with any ASGI server:
uvicorn tsb_kasko.asgi:app --host 0.0.0.0 --port 8000The endpoint is published at http://server:8000/mcp by default. For the easiest way, see the Docker section.
MCP tools
Tool | What it does |
| Finds vehicles from free text and returns the insured value for each match. This is the main tool. |
| Returns the model years covered by the list. Coverage is 2012 and later. |
| Lists the brands for a given model year. |
| Lists the types for a given brand and model year. |
| Reads the value of a single vehicle with a known model ID. |
| Parses the published Excel file for a given month. |
| Searches within a past month's list. |
| Downloads the Excel file for a given month to disk. |
All tools except kasko_download_archive are marked with readOnlyHint; that is, the client can call them without asking for confirmation.
Command-line usage
# Kapsanan model yılları
tsb-kasko years
# Bir model yılındaki markalar
tsb-kasko brands 2025
# Bir markanın tipleri
tsb-kasko models 2025 audi
# Serbest metinle sorgulama
tsb-kasko lookup 2025 "audi a3 sportback s line"
# Markayı sabitleyerek hızlandırma
tsb-kasko lookup 2025 "corolla hybrid" --brand toyota --limit 10
# JSON veya CSV çıktısı
tsb-kasko lookup 2025 "audi a3" --format json
tsb-kasko brands 2025 --format csv > markalar.csv
# Arşiv
tsb-kasko archive months
tsb-kasko archive file 2025 2
tsb-kasko archive search 2025 2 --query "sahin" --limit 20
tsb-kasko archive download 2025 2 --output ~/Downloads
# Önbellek
tsb-kasko cache path
tsb-kasko cache clear
# MCP sunucusunu CLI üzerinden çalıştırma
tsb-kasko serve --transport http --port 8000Example output:
audi a3 sportback in 2025
┏━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┓
┃ Vehicle Code ┃ Brand ┃ Model ┃ Kasko Value ┃
┡━━━━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━┩
│ 9-1616 │ AUDI │ A3 SPORTBACK 35 TFSI 150 S LINE ... │ 3.695.439,00 TL│
└──────────────┴───────┴─────────────────────────────────────┴────────────────┘As a Python library
import asyncio
from tsb_kasko import TsbKaskoClient
async def main() -> None:
async with TsbKaskoClient() as client:
for value in await client.lookup(2025, "audi a3 sportback"):
print(value.vehicle_code, value.model_name, value.amount)
asyncio.run(main())Docker
The container publishes the MCP server with HTTP transport. It uses a multi-stage build, runs as a non-root user, and has a read-only filesystem.
docker compose up --build
# -> http://127.0.0.1:8000/mcpTo only build the image and run the CLI:
docker build -f .docker/python/Dockerfile -t tsb-kasko-mcp .
docker run --rm --entrypoint tsb-kasko tsb-kasko-mcp lookup 2025 "audi a3"The Python version is pinned in the image via ARG PYTHON_VERSION and uses the same version as .python-version in the repository.
Configuration
All settings can be overridden with environment variables.
Variable | Default | Description |
|
| Root address of the TSB application. |
|
| Timeout per request, in seconds. |
|
| Number of retries on transient errors. |
|
| Set to |
|
| Cache lifetime for brand and model lists, in seconds. |
|
| Cache directory. |
|
| MCP transport: |
|
| Listening address for HTTP transport. |
|
| Port for HTTP transport. |
|
| Endpoint path in the ASGI application. |
TSB endpoints used
TSB does not publish an API contract. The following endpoints are used by the site's frontend and require no authentication or cookies. They are all defined in one place in src/tsb_kasko/endpoints.py.
Endpoint | Parameters | Returns |
| none | Covered model years |
|
| Brands |
|
| Types |
|
| Insured value and vehicle code |
| none | Archive months |
|
| Path to the monthly Excel file |
Two details are noteworthy:
The
VehicleBrandCodefield in the brand list always comes as0. The actual brand code that appears on the policy is only populated in theGetInsuranceDatasresponse.The
Idfield inGetMonthListis not the calendar month. January has2, October has1. Therefore the client does not calculate the month ID; it resolves it from the live list.
Project structure
All three interfaces are thin shells on top of the same core. That is why they all live in a single repository: when TSB renames an endpoint, the fix is made in one file, and no synchronization of three separate versions is needed.
src/tsb_kasko/
├── client.py # çekirdek: HTTP, yeniden deneme, önbellek
├── endpoints.py # TSB uçlarının tek tanım yeri
├── models.py # Pydantic modelleri
├── parsing.py # zarf açma, Türkçe sayı ve metin normalleştirme
├── archive.py # aylık Excel listelerinin okuyucusu
├── server.py # kabuk 1: FastMCP sunucusu
├── cli.py # kabuk 2: Typer komut satırı
└── asgi.py # HTTP taşıması için ASGI uygulamasıThe same layout is used in the github/github-mcp-server, microsoft/playwright-mcp, and grafana/mcp-grafana projects: a shared core with multiple entry points on top.
Development
git clone https://github.com/hmtkyn/tsb-kasko-mcp.git
cd tsb-kasko-mcp
uv sync --all-extras --all-groups
uv run pre-commit installuv run pytest # 146 test, kayıtlı gerçek yanıtlarla
uv run pytest --cov --cov-report=term-missing # kapsam raporu
uv run ruff check . # lint
uv run ruff format . # biçimlendirme
uv run mypy src/tsb_kasko # strict tip denetimi
uv run pre-commit run --all-files # CI'ın yaptığının tamamıTests use exact copies of real responses taken from TSB, so they break when the contract changes. There are no network-dependent tests.
Same results on Windows, macOS, and Linux
This repository is configured to behave identically on all three operating systems:
.python-versionpins the Python version to 3.14;uvdownloads it if needed. The package's supported range is>=3.11, and CI tests all four versions..gitattributesstores every text file with LF in the repository. Even ifcore.autocrlfis enabled on Windows, no CRLF enters the repository. A CI step additionally checks this..editorconfigfixes indentation, encoding, and line endings independently of the editor.With
.devcontainer/you can develop inside a container without installing anything.
For details, see CONTRIBUTING.md.
FAQ
What is the insured value and how is it determined? It is the reference vehicle value published monthly by TSB, based on brand and type. Insurance companies calculate the policy premium and claim payment based on this value.
How can I find out my vehicle's insured value?
Run tsb-kasko lookup <model_year> "<brand and type>" or set up the MCP server and ask your assistant. The official source is always tsb.org.tr.
What is the vehicle code on the policy?
It is the brand code - model code pair that insurers ask for, e.g., 9-1616. It is returned in the vehicle_code field in the results.
Which model years are covered?
2012 and later. You can see the current list with tsb-kasko years.
Can I access a past month's list?
Yes. tsb-kasko archive search 2025 2 --query "sahin" searches within the Excel file of a past month, and archive download downloads the file itself.
Is this project official? No. See the disclaimer below.
Disclaimer
This project is not affiliated with or endorsed by TSB. The data is taken from TSB's public page. According to TSB's own statement, TSB accepts no responsibility for the consequences of using these values in transactions. The official source is always tsb.org.tr.
Since the endpoints are not documented by TSB, they may change without notice. In such a case, updating src/tsb_kasko/endpoints.py is sufficient.
Contributing and license
Contribution guide: CONTRIBUTING.md
Code of conduct: CODE_OF_CONDUCT.md
Security policy: SECURITY.md
Changelog: CHANGELOG.md
Licensed under the MIT license. Turkish translation of the documentation: docs/lisans.md.
Available Tools
8 toolskasko_archive_fileARead-only
Resolve the monthly kasko list spreadsheet published by TSB.
TSB republishes the full list every month and keeps the past editions online. Use this to cite or hand the user the exact file for a given month, or to compare a current value against an older one.
| Name | Required | Description | Default |
|---|---|---|---|
| year | Yes | Publication year of the list, for example 2025. | |
| month | Yes | Calendar month of the list, 1 for January. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint and openWorldHint, so the description's addition is minimal. It does not contradict annotations, but it adds little behavioral detail beyond stating it 'resolves' a file—no mention of network dependency, file size, or error handling.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise (~50 words) and front-loaded with the core purpose. Every sentence serves a function: stating purpose, explaining context, listing use cases. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (2 params, output schema present), the description covers purpose, usage context, and practical applications. It could mention what happens if the requested month doesn't exist, but openWorldHint reduces the need. Overall, it feels complete for this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already covers both parameters with clear descriptions (year with example, month with min/max/example). The description adds no additional meaning or context for the parameters, meeting the baseline for 100% schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool resolves a monthly spreadsheet and provides use cases like citing or comparing. It distinguishes from siblings by focusing on retrieving a specific month's file, though the verb 'resolve' is slightly vague compared to 'retrieve' or 'fetch'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains when to use this tool (to get a file for a given month or compare values) and provides background on TSB's publishing pattern. It does not explicitly state when not to use it, but the context is clear enough to avoid misuse.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
kasko_download_archiveA
Download a monthly kasko list spreadsheet to disk.
Use this when the user wants the whole list as a file rather than a few rows. Prefer kasko_search_archive when they only need specific vehicles.
| Name | Required | Description | Default |
|---|---|---|---|
| year | Yes | Publication year of the list, for example 2025. | |
| month | Yes | Calendar month of the list, 1 for January. | |
| destination | No | Directory to save into. Defaults to the current working directory. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate a write operation (readOnlyHint: false) with no destructiveness (destructiveHint: false). The description adds that it saves a spreadsheet to disk, which is consistent and provides useful context about output format. It does not go into details like file naming or overwrite behavior, but given the annotations, the transparency is strong.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no fluff, front-loaded with the action. Every word serves a purpose. Perfectly concise for the tool's simplicity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity (3 parameters, simple semantics), perfect schema coverage, existing output schema, and clear annotations, the description covers all necessary aspects. It includes usage guidelines and sibling differentiation, making it fully self-contained for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description does not add extra meaning to parameters beyond what the schema provides (year, month, destination). It correctly implies monthly granularity, but this is already clear from the parameter names and tool title.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states 'Download a monthly kasko list spreadsheet to disk,' providing a clear verb and resource. It distinguishes itself from sibling kasko_search_archive by noting when to use each, making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit when-to-use guidance ('when the user wants the whole list as a file rather than a few rows') and explicitly names an alternative tool for a different case ('Prefer kasko_search_archive when they only need specific vehicles'). This fully satisfies the criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
kasko_get_valueARead-only
Read the kasko value of one exact model by its identifier.
Use this after the user picks a specific row from kasko_list_models. When the vehicle is only described in words, use kasko_lookup instead.
| Name | Required | Description | Default |
|---|---|---|---|
| model_id | Yes | Model identifier returned by kasko_list_models or kasko_lookup. | |
| model_year | Yes | Vehicle model year, for example 2025. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint and openWorldHint, so the description's claim of reading aligns. However, the description adds no extra behavioral context (e.g., latency, auth needs, or that results may vary per openWorldHint). It is adequate but does not add value beyond what annotations convey.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no redundancy. The first sentence states the core purpose; the second provides usage guidance. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of the tool (two required params, output schema exists), the description is sufficient. It covers what the tool does, when to use it, and how to differentiate from siblings. No gaps are evident.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the schema already includes meaningful descriptions for both parameters. The description mentions 'by its identifier' but does not add new semantic detail beyond the schema. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Read the kasko value of one exact model by its identifier'), specifies the resource ('kasko value'), and distinguishes it from siblings by referencing kasko_list_models and kasko_lookup. This is specific and leaves no ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells when to use the tool ('after the user picks a specific row from kasko_list_models') and when to use an alternative ('When the vehicle is only described in words, use kasko_lookup instead'). This provides clear decision context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
kasko_list_brandsARead-only
List the vehicle brands available for a model year.
Brand availability differs per model year, so the year is required. The returned brand_id is the identifier kasko_list_models expects; it is not the brand code printed on policies.
| Name | Required | Description | Default |
|---|---|---|---|
| model_year | Yes | Vehicle model year, for example 2025. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and openWorldHint, which the description reinforces. It adds behavioral nuance by clarifying that the returned brand_id is not the brand code printed on policies, preventing misuse. It could mention the exact return format but the output schema likely covers that.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is brief, with exactly two short paragraphs. The first sentence delivers the core purpose, and the second adds essential details. Every sentence earns its place; there is zero waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, no nested objects), the description fully covers the purpose, requirements, and the key distinction about brand_id. The output schema exists, so return values are documented elsewhere, making this description complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema already describes model_year with an example, and the description emphasizes its necessity and the fact that availability varies by year. This adds meaningful context beyond the schema, such as why the parameter is required and its impact on results.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists vehicle brands for a model year, using a specific verb and resource. It distinguishes from siblings like kasko_list_models by mentioning it returns brand_id for that consumer.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states the year is required because availability differs per year, and notes the relationship to kasko_list_models. This provides clear when-to-use guidance and key context for the expected workflow.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
kasko_list_modelsARead-only
List the models of one brand in a model year.
Model names carry trim, engine and gearbox information, which is what makes two rows of the same nameplate differ in value. The returned model_id is the identifier kasko_get_value expects.
| Name | Required | Description | Default |
|---|---|---|---|
| brand | Yes | Brand name or fragment, for example 'audi' or 'vw'. | |
| model_year | Yes | Vehicle model year, for example 2025. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, so no destructive behavior is expected. The description adds behavioral context about model name composition (carrying trim, engine, gearbox info) and that model_id is the key for kasko_get_value, enhancing transparency beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with three sentences. The first sentence is a clear purpose statement, and the additional sentences provide useful detail without being verbose. However, the first sentence could more explicitly front-load the essential action.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity (2 required parameters, 100% coverage, no enums), the description is adequate. It explains the meaning of returned data and how it connects to another tool (kasko_get_value). The presence of an output schema means return values don't require further explanation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the schema already describes both parameters (brand and model_year) with examples. The description does not add further parameter semantics; the example values in the description are redundant with the schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('List') and the specific resource ('models of one brand in a model year'). It also distinguishes itself from siblings by noting that the returned model_id is used by kasko_get_value, which differentiates it from tools like kasko_list_brands or kasko_list_model_years.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains what the tool returns (model names with trim, engine, gearbox info) and the significance of model_id for downstream use, but does not explicitly state when to use this tool over alternatives or mention any prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
kasko_list_model_yearsARead-only
List the vehicle model years covered by the TSB kasko value list.
Call this when the user gives no model year, or to check whether a year is covered before querying it. Coverage starts at 2012.
Returns: A mapping with the covered model years in descending order.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint and openWorldHint annotations already indicate this is a non-destructive, open-ended read operation. The description adds that coverage starts at 2012 and the result is a mapping in descending order, which are useful behavioral details beyond the annotations. However, it does not disclose whether the output always includes a fixed set of years or may vary (e.g., if coverage is updated). The annotations cover the safety profile well, so the description's incremental value is solid but not maximal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very concise: three clear sentences covering purpose, usage scenario, and a key behavioral constraint (start year). It immediately states the tool's function, then gives a concrete use case, and wraps with a brief note on the output format. No words are wasted, and every sentence serves a distinct purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (zero parameters, a mapping output, and clear semantics), the description is complete enough. The output schema exists (though the content is not shown here, but the description mentions the return type), and the start year constraint is disclosed. For a list tool with straightforward behavior, no additional info is needed to enable correct invocation and interpretation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and schema description coverage is 100%. The description does not need to explain parameters since there are none, but it clarifies that no input is required and the call itself is a self-contained check. This achieves a high baseline (4) because the schema is trivially complete and the description confirms the stateless nature.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists vehicle model years from the TSB kasko value list, specifying it returns them in descending order. The verb 'list' and the resource 'vehicle model years' are explicit, and it distinguishes from siblings by being a parameterless year-coverage check, unlike tools like kasko_lookup or kasko_get_value which operate on specific entries.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells when to call this tool: when the user provides no model year, or to verify coverage before querying a specific year. This contrasts with siblings like kasko_list_brands or kasko_list_models which list other entities, and kasko_get_value which retrieves a specific value once a year is known. The guidance is direct and actionable, leaving no ambiguity about prerequisites or context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
kasko_lookupARead-only
Look up the kasko value of a vehicle from a free text description.
This is the primary tool. It resolves the description to matching models and returns the value of each, so no identifier lookup is needed first. Every result carries vehicle_code, the brand and model code pair printed on policies, which is the value an insurer will ask for.
When several trims match, present them to the user rather than guessing: the spread between trims of the same nameplate is often large.
| Name | Required | Description | Default |
|---|---|---|---|
| brand | No | Optional brand name to restrict the search and speed it up. | |
| limit | No | Maximum number of priced matches to return. | |
| query | Yes | Free text vehicle description. Include brand, nameplate and any trim or engine detail the user gave, for example 'audi a3 sportback s line' or 'corolla 1.6 hybrid'. | |
| model_year | Yes | Vehicle model year, for example 2025. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
注释已提供readOnlyHint(只读)和openWorldHint(结果可能变化)。描述在此基础上增加了关键行为:解析描述后匹配模型并按车辆返回价值;每个结果携带vehicle_code(保单上使用的品牌型号对);当多个配置匹配时,要求代理呈现给用户而非猜测。这些行为准则超出了注释的覆盖范围,但未解释openWorldHint的具体含义(如结果集是否随时间变化)。
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
描述仅用三个句子便涵盖了核心功能、使用定位(主工具)、返回值关键字段以及多匹配处理原则。每句承载明确信息,无冗余或无关内容,信息密度高且前端加载了最重要信息。
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
针对4个参数(含2个必需)且有输出模式的场景,描述给出了基本完整的介绍:工具做什么、参数使用建议、返回值关键含义、以及用户交互策略。但缺少对无匹配或查询不精确时的处理说明,也未涉及与其他兄弟工具(如kasko_list_models)协作的典型流程。考虑到复杂度,描述已覆盖核心用例,留有少量改进空间。
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
模式描述覆盖率为100%,基线为3。描述通过示例(“Include brand, nameplate and any trim or engine detail the user gave”)解释了如何填充query参数,并强调了brand可选以加速搜索。同时描述了返回值中的vehicle_code字段及其业务意义(保险公司要求的值),这为参数的使用提供了语义上下文,超过了模式本身的描述。
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
描述以“Look up the kasko value of a vehicle from a free text description”开篇,明确动词(look up)和资源(kasko value),并指出输入是自由文本。后续强调这是“primary tool”,无需预先进行标识符查找,直接区隔于需要编码的兄弟工具(如kasko_get_value),使目的高度清晰且区分于同类工具。
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
描述明确说“This is the primary tool”并给出使用时的行为准则(当多个配置匹配时呈现给用户而非猜测),暗示了这是首选入口。但未明确说明何时应转向其他工具(如kasko_list_brands或kasko_get_value),也缺少当自由文本无法解析时的回退建议,从而遗漏了明确的替代路径。
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
kasko_search_archiveARead-only
Search inside a past monthly kasko list.
Answers historical questions the live endpoints cannot, such as what a vehicle was valued at earlier in the year. The spreadsheet is downloaded and filtered server side, so keep the query specific.
| Name | Required | Description | Default |
|---|---|---|---|
| year | Yes | Publication year of the list, for example 2025. | |
| limit | No | Maximum number of rows to return. | |
| month | Yes | Calendar month of the list, 1 for January. | |
| query | No | Optional free text filter applied to brand and model names. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint: true and openWorldHint: true, indicating a safe, read-only operation with potentially expanding data. The description adds value by explaining that the spreadsheet is downloaded and filtered server-side, which implies a delayed response and potential size limits. It also clarifies the historical scope limitation, which is not in the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very concise: two sentences covering purpose, use case, and a behavioral caveat. Every sentence provides essential information without redundancy. The layout is front-loaded with the core action, making it easy for an AI agent to quickly grasp the tool's role.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (4 parameters, 2 required, no enums) and the presence of a full input schema and output schema, the description is complete enough. It explains the historical query purpose, the server-side processing behavior, and advises on query specificity. The annotations fill in safety and scope, and the sibling tools provide alternatives for other use cases.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so each parameter has a description. The description adds meaning by clarifying that 'query' is an optional free text filter for brand and model names, which is consistent with the schema. While the schema already provides details, the description's mention of filtering 'server side' and keeping queries specific adds pragmatic context. The example year '2025' in the year field description is also helpful.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the tool searches inside a past monthly kasko list, addressing historical questions like vehicle valuations earlier in the year. The verb 'search' and resource 'archive' are clear, and the purpose is distinguished from siblings by focusing on historical data not available via live endpoints.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly states when to use this tool: for historical questions that live endpoints cannot answer. It provides an example ('what a vehicle was valued at earlier in the year') and advises to keep queries specific, implying efficient usage. However, it doesn't explicitly exclude other scenarios or mention when not to use it, but the context of eight sibling tools and the open-world hint suggests alternatives exist.
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.
8 tool updates
v0.1.0- First observed
kasko_archive_file - First observed
kasko_download_archive - First observed
kasko_get_value - First observed
kasko_list_brands - First observed
kasko_list_model_years - First observed
kasko_list_models - First observed
kasko_lookup - First observed
kasko_search_archive
TDQS
Scored across 8 tools
Each tool has a distinct purpose: browsing hierarchy (years, brands, models), direct value lookup (free-text vs exact ID), and archive handling (resolve, search, download). No two tools overlap enough to cause confusion, and the descriptions clearly differentiate kasko_lookup from kasko_get_value.
Most tools follow the kasko_<verb>_<object> pattern (list_brands, get_value, search_archive). Minor deviations: kasko_lookup lacks an object, and kasko_archive_file is noun-like rather than verb-led. Overall the convention is consistent and readable.
With 8 tools, the set is well-scoped for a kasko lookup service. Three tools cover hierarchical browsing, two cover value retrieval, and three cover archive operations. No tool feels redundant or missing.
The surface covers the full user journey: discover coverage years, browse brands/models, get current value by text or exact ID, and access historical data via archive tools. No critical operations are missing for a read-only reference service.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Pay-per-use tool marketplace for AI agents. Search, price-check, and call APIs via MCP.
SmartMoney77 MCP v0.6.0 — 14 public tools that turn financial questions into exact numbers and citable links. New: historical_investment_return and compare_investments, which compute "what if I had invested" results from real yearly price data. Also compound interest, FIRE number, credit-card payoff, emergency fund, inflation, latte factor, investment fees, cost of waiting, plus discovery/deep-link/share-pack tools for a catalog of calculators in 6 languages (he/en/ar/es/pt/in). Public, no login. Endpoint: https://smartmoney77.com/mcp
337 MCP tools with x402 micropayments on Base. $0.001/call. No signup, no API keys.
Automate 1,000+ services from any MCP-compatible AI agent: build Applets, run actions and queries.
Related MCP Servers
- AlicenseAqualityCmaintenanceProvides an MCP interface for accessing YOKATLAS (Turkish Higher Education Council Atlas) data, enabling LLM applications like Claude to search and retrieve details about undergraduate and associate degree programs in Turkey.471MIT
- AlicenseNot gradedqualityDmaintenanceProvides vehicle reference prices in Brazil (Tabela FIPE) for cars, motorcycles, and trucks, enabling navigation by brand/model/year, historical price queries, depreciation curves, and fuzzy model search.MIT
- AlicenseAqualityAmaintenanceMCP server that unifies official Turkish open data sources into a single interface, letting AI agents query and compare normalized indicators like population, inflation, and GDP through natural language.10MIT
- AlicenseNot gradedqualityCmaintenanceRead-only MCP server for querying DPVAT (Brazilian insurance) guide issuance information from an official source. It provides a single tool that allows users to consult DPVAT guide data via natural language in any MCP-compatible client.MIT