Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Eu Tools

БесплатноНе проверен

Paid MCP server for EU tools: validate VAT numbers via VIES and get ECB euro FX rates, with per-call USDC payments on Base via the x402 protocol.

GitHubEmbed

Описание

Paid MCP server for EU tools: validate VAT numbers via VIES and get ECB euro FX rates, with per-call USDC payments on Base via the x402 protocol.

README

Paid MCP tools for AI agents — pay per call in USDC on Base via the x402 protocol. No signup, no API key: your agent's wallet signs a payment, the tool answers.

Built with x402-mica: every paid call is logged with a MiCA-compliance flag to a public, live audit dashboard — see below.

Tools

Tool Price What it does
validate_vat(country, vat_number) $0.005 Checks an EU VAT number against the official VIES registry; returns validity + registered company name/address.
eur_fx(currency, date?) $0.001 Official ECB euro reference rate (latest, or a business day within the last 90 days).

Endpoint: https://eu-tools-mcp.fly.dev/mcp (MCP Streamable HTTP, stateless)

Call it from an agent

Your MCP client needs x402 payment support and a funded wallet (USDC on Base, a plain EOA — smart-wallet/EIP-7702 signers are not supported by USDC's transfer authorization):

import { Client } from "@modelcontextprotocol/sdk/client/index.js";
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js";
import { wrapMCPClientWithPayment, x402Client } from "@x402/mcp";
import { ExactEvmScheme } from "@x402/evm/exact/client";
import { privateKeyToAccount } from "viem/accounts";

const account = privateKeyToAccount(process.env.WALLET_KEY);
const mcp = wrapMCPClientWithPayment(
  new Client({ name: "my-agent", version: "1.0.0" }),
  new x402Client().register("eip155:*", new ExactEvmScheme(account)),
  { autoPayment: true },
);
await mcp.connect(new StreamableHTTPClientTransport(new URL("https://eu-tools-mcp.fly.dev/mcp")));
const res = await mcp.callTool("validate_vat", { country: "IE", vat_number: "6388047V" });

Tool listing (tools/list) is free — only calls are paid.

Live audit dashboard

Every paid call lands in a public, read-only MiCA audit trail (timestamp, asset, amount, payer, on-chain tx, mica_compliant flag):

https://eu-tools-mcp.fly.dev/audit?key=demo-c43d89b159ec2227

CSV/JSON export: append &format=csv or &format=json.

Notes

  • Payment settles before the tool runs (that's x402); if VIES has a member-state outage you get a structured error for that call, not a refund. That's why the price is half a cent.
  • Non-custodial: funds go payer wallet → seller wallet; this server never holds money.

Run your own

cp .env.example .env, set PAY_TO, npm install && npm run dev — then read the x402-mica docs for mainnet (CDP facilitator keys) and dashboard options.

from github.com/iCx6/eu-tools-mcp

Установка Eu Tools

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/iCx6/eu-tools-mcp

FAQ

Eu Tools MCP бесплатный?

Да, Eu Tools MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Eu Tools?

Нет, Eu Tools работает без API-ключей и переменных окружения.

Eu Tools — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Eu Tools в Claude Desktop, Claude Code или Cursor?

Открой Eu Tools на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Eu Tools with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development