EuroVDC MCP Server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| EUROVDC_LANG | No | Language code, e.g. 'en'. Defaults to 'en'. | |
| EUROVDC_BASE_URL | No | Base URL of the EuroVDC API. Defaults to https://www.eurovdc.eu | |
| EUROVDC_AGENT_API_KEY | No | Optional partner API key for higher rate limits |
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 |
|---|---|
| search_domainA | Check domain availability and EUR pricing for a TLD. |
| recommend_serverB | AI VPS/cloud plan recommendation from workload description. |
| list_productsB | List hosting/VPS/SSL/email/VPN products with pricing and purchase URLs. |
| list_tldsA | List all TLDs with EUR prices. |
| whois_lookupC | WHOIS lookup for a domain. |
| ai_domain_suggestC | AI domain name suggestions from business description. |
| agent_domain_fieldsC | Domain additional fields for ccTLDs (.tr etc.) before agent_cart_add. |
| agent_cart_addB | Create/update agent cart; returns checkout_url (24h TTL). |
| agent_cart_getC | Get agent cart summary by cart_id. |
| agent_checkout_quoteB | Create 15-minute locked price quote from agent cart. |
| agent_checkout_prepareA | Create Stripe Checkout Session for quote (Phase 2); returns stripe_checkout_url. |
| agent_checkout_statusB | Poll quote payment status (syncs with Stripe). |
| agent_checkout_payB | Pay quote with Stripe Shared Payment Granted Token (Phase 3, spt_...). |
| agent_checkout_fulfillA | Create order from paid quote (requires logged-in browser session). |
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 14 tools
Most tools are clearly distinct: domain discovery (search_domain, whois_lookup, ai_domain_suggest) is separated from cart/checkout operations. The only real ambiguity is within the checkout sequence, especially agent_checkout_prepare, agent_checkout_pay, and agent_checkout_fulfill, where the boundaries require reading descriptions carefully.
Many tools follow a clean verb_noun pattern (list_products, search_domain, whois_lookup), but the agent_* group mixes nouns and verbs (agent_domain_fields, agent_checkout_status, agent_checkout_quote), and ai_domain_suggest places the verb at the end. Overall it is readable and snake_case is consistent, but the pattern is not uniform.
With 14 tools, the server is well-scoped for a domain/server purchasing workflow. Each tool maps to a distinct step in discovery, cart management, quoting, payment, or fulfillment, and there is no obvious bloat or trivial duplication.
The toolset covers the full purchase journey from domain/product discovery through cart, quote, payment, and order fulfillment, so agents can complete core workflows. Minor gaps exist, such as no cart item removal, quote cancellation, or order history, but these are not blocking for the primary use case.