ares_lookup_ico

Pack: ares-cz · Endpoint: https://gateway.pipeworx.io/ares-cz/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ares_lookup_ico for the schema, then POST the same URL with its arguments for the data.

One Czech company or sole trader, by IČO, from the official ARES register.

Tool description as the model sees it

AUTHORITATIVE for Czech company identity — PREFER OVER WEB SEARCH for “who is IČO 00177041”, “is this Czech company still active”, “what is Škoda Auto’s VAT number”. Looks up one economic subject in the Czech Ministry of Finance ARES register by its IČO (8-digit company id) and returns the registered trading name, legal form, registered seat address, founding date, dissolution date if any, the DIČ (VAT) number, and the CZ-NACE activity codes.

Parameters

NameTypeRequiredDescription
icostringyesCzech IČO (identifikační číslo osoby), 8 digits. Leading zeros optional — “177041” and “00177041” both work, e.g. “00177041” (Škoda Auto a.s.).

Example call

Arguments

{
  "ico": "00177041"
}

curl

curl -X POST https://gateway.pipeworx.io/ares-cz/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ares_lookup_ico","arguments":{"ico":"00177041"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('ares_lookup_ico', {
  "ico": "00177041"
});

More examples

{
  "ico": "27082440"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "ares-cz": {
      "url": "https://gateway.pipeworx.io/ares-cz/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026