eCommerce
e-vignettes.eu
Provides country guides and product catalog information for purchasing European motorway vignettes and section tolls through Vignette ID.
ENDPOINT 1
https://e-vignettes.eu/mcp
MCP server metadata
- Name
- vignette-id
- Version
- 1.0.0
Vignette ID sells official digital motorway vignettes (e-vignettes) and Alpine section-toll tickets for Austria, Switzerland, Czechia, Slovakia, Hungary, Slovenia, Romania, Bulgaria and Moldova. Start with list_countries to learn the valid country codes, then get_country for a country's toll rules (tolled roads, vehicle classes, validity periods, activation, fines) or list_products for live prices. read_page returns any page of the site as Markdown for anything the structured tools do not cover. Country facts carry a last_reviewed date — state it when answering about rules or fines. Prices include the Vignette ID service fee in total_price and state the operator's own price in government_price; say which one you are quoting. This server is read-only and needs no credentials. It cannot buy anything: issuing a vignette needs a partner API key and the separate partner MCP server at https://api.vignette.id/mcp. To send a person to buy one themselves, link https://vignette.id/products. Do not use this server for vehicles over 3.5 tonnes (they use separate distance-based tolls), for countries outside the nine listed, or to check whether a particular licence plate already holds a valid vignette — that lives in the national operator's system.
Known tools 4
list_countriesList the nine European countries Vignette ID sells motorway vignettes and section tolls for, with each country's official toll operator, a one-paragraph summary of how its toll system works, and the date the facts were last verified.
Inferred read-onlyget_countryGet everything the Vignette ID country guide states about one country: which roads are tolled, vehicle categories and validity periods, how activation and plate registration work, fines and enforcement, tolls a vignette does not cover, a country FAQ, and the official operator pages every fact was checked against.
Inferred read-onlylist_productsList the live catalogue of vignettes and Alpine section tolls with their prices.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.vignette-id]
url = "https://e-vignettes.eu/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"vignette-id": {
"type": "http",
"url": "https://e-vignettes.eu/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: vignette-id
Remote MCP URL: https://e-vignettes.eu/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"vignette-id": {
"url": "https://e-vignettes.eu/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"vignette-id": {
"type": "http",
"url": "https://e-vignettes.eu/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "vignette-id",
"transport": "streamable-http",
"url": "https://e-vignettes.eu/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://api.vignette.id/mcp
Known tools 0
No tool metadata was available in the registry cache.
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.e-vignettes-eu]
url = "https://api.vignette.id/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"
Authentication is required. Replace the placeholder locally and never commit a secret.
Claude Code
.mcp.json
{
"mcpServers": {
"e-vignettes-eu": {
"type": "http",
"url": "https://api.vignette.id/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Claude Desktop
Settings → Connectors → Add custom connector
Name: e-vignettes-eu
Remote MCP URL: https://api.vignette.id/mcp
Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"e-vignettes-eu": {
"url": "https://api.vignette.id/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Visual Studio Code
.vscode/mcp.json
{
"servers": {
"e-vignettes-eu": {
"type": "http",
"url": "https://api.vignette.id/mcp",
"headers": {
"Authorization": "Bearer ${input:mcp-token}"
}
}
},
"inputs": [
{
"type": "promptString",
"id": "mcp-token",
"description": "e-vignettes-eu bearer token",
"password": true
}
]
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Generic MCP
Client-specific MCP configuration
{
"name": "e-vignettes-eu",
"transport": "streamable-http",
"url": "https://api.vignette.id/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Loading Trust v2 evidence…
Checking the associated registrable domain. The BuiltWith key remains server-side.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.