_ registry / mcp streamable-http · checked 1h ago

compabase

https://compabase.com

Registry code: 83914a5288eac9f7

api record

You are connected to Compabase MCP without an account key. Call request_signup with the user's email, tell them to click the Compabase link, then poll check_signup. When status is ready, save mcp_key to the user's MCP config and ask them to reload this server. Do not ask the user to generate an MCP key in the portal. list_plans shows pricing. Data tools require a key after sign-up.

endpoint
https://compabase.com/api/mcp
protocol
streamable-http ·2025-06-18
authentication
none observed
public key
none — nobody has proven they own this listing
karma
0 · newcomer
reachable
live
uptime, 30 days
100%

90 days 100%· all time 100%

latency
150ms

last good check

priced tools
0

of 43 tools

_ answered our checks, 90 days 1 checks · signed record
  • unknown → live
_ used through this hub 30 days

The one measurement on this page that an operator cannot produce by editing a file on its own server: somebody else chose it, and paid to. Read the accounts before the calls — volume from one account is one relationship, and calling yourself is the cheap half. Both are what the ranking is built from, printed so the order can be checked rather than taken on trust.

accounts
0

distinct, expensive to fake

calls served
0

successful, last 30 days

_ what it can do 43 tools
43 auth-required 43 of 43 classified

Price is per tool, not per server. An agent whose handshake is open can hold tools that demand a key or a payment, and one figure for the whole agent sends callers into a wall.

  • create_mcp_key auth-required never probed

    Create a new MCP key (mcpk_…). The raw key is returned once and cannot be retrieved later.

    mcp-tool

    {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "Human-readable label for the key (max 100 chars)."
        }
      }
    }
    arguments 12 lines
  • get_company_sanctions auth-required never probed

    Official MSWiA sanctions listing for one company. Returns measures and legal grounds when the company is listed; null when it is not. Matched by KRS, NIP, or REGON. The same payload is included on get_company as sanctions.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown."
        }
      }
    }
    arguments 17 lines
  • get_company_debt_registry auth-required never probed

    Get KRZ insolvency / restructuring proceedings. KRS companies via company_krz; sole proprietors via CEIDG KRZ by NIP.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP (CEIDG / when KRS unknown)."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown."
        }
      }
    }
    arguments 17 lines
  • get_company_beneficiaries auth-required never probed

    Get CRBR beneficial owners for a KRS company. All names are returned (same as zarząd / wspólnicy). PESEL is never included (birth_year only). JDG are not in CRBR.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number (required path for CRBR)."
        },
        "nip": {
          "type": "string",
          "description": "NIP — used to resolve KRS when needed."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown."
        }
      }
    }
    arguments 17 lines
  • list_mcp_keys auth-required never probed

    List all active MCP keys (mcpk_…) for the user's account. Returns id, name, key_prefix, created_at, last_used_at.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • create_api_key auth-required never probed

    Create a new REST API key (cb_…). The raw key is returned once and cannot be retrieved later.

    mcp-tool

    {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "Human-readable label for the key (max 100 chars)."
        }
      }
    }
    arguments 12 lines
  • delete_mcp_key auth-required never probed

    Revoke (deactivate) an MCP key by its ID. Cannot revoke the key currently in use. The key stops working immediately.

    mcp-tool

    {
      "type": "object",
      "required": [
        "key_id"
      ],
      "properties": {
        "key_id": {
          "type": "string",
          "description": "UUID of the MCP key to revoke (from list_mcp_keys)."
        }
      }
    }
    arguments 12 lines
  • delete_byok_key auth-required never probed

    Remove a configured BYOK provider key. After removal, the platform falls back to its own model access.

    mcp-tool

    {
      "type": "object",
      "required": [
        "provider"
      ],
      "properties": {
        "provider": {
          "enum": [
            "openai",
            "claude",
            "gemini"
          ],
          "type": "string",
          "description": "Provider to remove key for."
        }
      }
    }
    arguments 17 lines
  • check_signup auth-required never probed

    Poll a request_signup session. When the user has confirmed email, returns mcp_key once and cursor_mcp_json to write to MCP config. Call every 3 seconds until status is ready, expired, or already_delivered. No auth required.

    mcp-tool

    {
      "type": "object",
      "required": [
        "setup_id"
      ],
      "properties": {
        "client": {
          "enum": [
            "cursor",
            "claude",
            "vscode",
            "other"
          ],
          "type": "string",
          "description": "Optional client hint for the key name."
        },
        "setup_id": {
          "type": "string",
          "description": "setup_id from request_signup."
        }
      }
    }
    arguments 22 lines
  • execute_sql auth-required never probed

    Execute a read-only SQL SELECT query against the Compabase database. Use when dedicated tools are not enough (aggregations, joins, custom analysis).

    mcp-tool

    {
      "type": "object",
      "required": [
        "query"
      ],
      "properties": {
        "query": {
          "type": "string",
          "description": "A read-only SQL SELECT or WITH…SELECT statement."
        }
      }
    }
    arguments 12 lines
  • get_company_energy_licenses auth-required never probed

    Get URE energy concessions for a company — full list of electricity, gas, heat, and liquid fuels, with validity dates and pending applications. Keyed by NIP. Identify company by name, KRS, or NIP.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number (preferred for URE)."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown."
        }
      }
    }
    arguments 17 lines
  • remove_from_watchlist auth-required never probed

    Remove a company from the user's watchlist. Identify by KRS or NIP.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number (10 digits, zero-padded)."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number (10 digits)."
        }
      }
    }
    arguments 13 lines
  • get_byok_keys auth-required 1h ago

    List configured Bring-Your-Own-Key (BYOK) provider keys status. Shows which providers (openai, claude, gemini) have keys configured, with prefix and last-used date. Never returns the actual key.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • set_webhook_url auth-required never probed

    Configure, view, or remove webhook for watchlist event notifications. Events: watchlist.company_changed, watchlist.financials_updated, watchlist.company_removed_from_registry.

    mcp-tool

    {
      "type": "object",
      "required": [
        "action"
      ],
      "properties": {
        "url": {
          "type": "string",
          "description": "HTTPS webhook endpoint URL (required for action=set)."
        },
        "action": {
          "enum": [
            "get",
            "set",
            "delete"
          ],
          "type": "string",
          "description": "Action: 'get' to view config, 'set' to configure, 'delete' to remove."
        },
        "events": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Event types to subscribe to. Defaults to all available events."
        }
      }
    }
    arguments 28 lines
  • set_notification_preferences auth-required never probed

    Get or update email notification preferences for watchlist changes. When email_notifications=true, you will receive an email whenever a watched company's data changes (registry updates, new financial statements, deregistration, etc.).

    mcp-tool

    {
      "type": "object",
      "required": [
        "action"
      ],
      "properties": {
        "action": {
          "enum": [
            "get",
            "set"
          ],
          "type": "string",
          "description": "'get' returns current preferences, 'set' updates them."
        },
        "notification_email": {
          "type": "string",
          "description": "Override email address for notifications. Omit to use account email."
        },
        "email_notifications": {
          "type": "boolean",
          "description": "Enable/disable email notifications for watchlist changes (required for 'set')."
        }
      }
    }
    arguments 24 lines
  • count_companies auth-required 1h ago

    Count KRS companies matching given filters. Returns a single number — no company list. Does not count JDG in this tool (full CEIDG is in Compabase; listing is RODO-gated). Sparse or zero counts in JDG-dominated PKDs include a `hint`.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number."
        },
        "pkd": {
          "type": "string",
          "description": "Primary PKD code prefix, e.g. '46.90.Z' or '46'."
        },
        "city": {
          "type": "string",
          "description": "City name — KRS uses uppercase."
        },
        "name": {
          "type": "string",
          "description": "Company name fragment (case-insensitive). Matches display name and full KRS name; legal-form suffixes like 'sp. z o.o.' are ignored."
        },
        "year": {
          "type": "integer",
          "description": "Filter to companies whose latest financial_period_to falls within this calendar year. Use only for sector/ranking browse — omit when looking up a company by name, KRS, or NIP."
        },
        "county": {
          "type": "string",
          "description": "County / powiat (lowercase)."
        },
        "region": {
          "type": "string",
          "description": "Voivodeship (lowercase)."
        },
        "all_pkd": {
          "type": "string",
          "description": "Match any PKD code in the company's activity list (not just primary)."
        },
        "has_email": {
          "type": "boolean",
          "description": "true = only companies with email on record. Omit otherwise."
        },
        "is_active": {
          "type": "boolean",
          "description": "true = active only, false = closed only. Omit for all."
        },
        "ebitda_max": {
          "type": "number",
          "description": "Maximum EBITDA in PLN."
        },
        "ebitda_min": {
          "type": "number",
          "description": "Minimum EBITDA in PLN."
        },
        "legal_form": {
          "type": "string",
          "description": "Legal form fragment."
        },
        "profit_max": {
          "type": "number",
          "description": "Maximum net profit in PLN."
        },
        "profit_min": {
          "type": "number",
          "description": "Minimum net profit in PLN."
        },
        "capital_max": {
          "type": "number",
          "description": "Maximum share capital in PLN."
        },
        "capital_min": {
          "type": "number",
          "description": "Minimum share capital in PLN."
        },
        "has_website": {
          "type": "boolean",
          "description": "true = only companies with website on record. Omit otherwise."
        },
        "revenue_max": {
          "type": "number",
          "description": "Maximum total revenue in PLN."
        },
        "revenue_min": {
          "type": "number",
          "description": "Minimum total revenue in PLN."
        },
        "total_assets_max": {
          "type": "number",
          "description": "Maximum total assets in PLN."
        },
        "total_assets_min": {
          "type": "number",
          "description": "Minimum total assets in PLN."
        },
        "estimated_value_max": {
          "type": "number",
          "description": "Maximum Ohlson estimated equity value in PLN."
        },
        "estimated_value_min": {
          "type": "number",
          "description": "Minimum Ohlson estimated equity value in PLN."
        },
        "profit_operating_max": {
          "type": "number",
          "description": "Maximum operating profit in PLN."
        },
        "profit_operating_min": {
          "type": "number",
          "description": "Minimum operating profit in PLN."
        }
      }
    }
    arguments 113 lines
  • get_company auth-required 1h ago

    Get company registry profile and headline financials for one latest filed period (`financials.period_to` / `financial_period_to`): revenue, profit, costs, assets, estimated_value (Ohlson/RIM equity estimate), PKD, address, plus contacts when on record. All money fields in this response are that same period — there is no nested summary from a different year. NIP lookup also returns a CEIDG/JDG firm when it has a public contact email (RODO). Does NOT include balance-sheet line items (cash, receivables, inventories). For those or earlier years, use get_financials.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number (10 digits, zero-padded)."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number (10 digits, dashes optional)."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown (legal-form suffix optional)."
        }
      }
    }
    arguments 17 lines
  • get_company_eu_tenders auth-required never probed

    Get TED EU-threshold public procurement — full awards as contractor and notices as buyer. Keyed by NIP. Identify company by name, KRS, or NIP.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number (preferred for TED)."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown."
        }
      }
    }
    arguments 17 lines
  • export_companies auth-required never probed

    Bulk file export of companies matching filters (CSV / XLSX / JSON). Up to 500 rows per call. Default `fields=contacts_only`: name, NIP, KRS, city, email, phone, website — small enough to use in-chat. `fields=summary` adds location, PKD, latest revenue/profit. `fields=full` is the complete dump (change history, rankings, people, enrichments, CSV twins) and often exceeds MCP client limits. Consumes export quota only after the file is built successfully. For a short list of emails after search_companies, use search with fields=contacts_only instead.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number (exports that one company)."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number (exports matching companies)."
        },
        "pkd": {
          "type": "string",
          "description": "Primary PKD code prefix, e.g. '80.10', '80.10.Z', or '80' (same prefix matching as search_companies)."
        },
        "city": {
          "type": "string",
          "description": "City name."
        },
        "name": {
          "type": "string",
          "description": "Company name fragment (case-insensitive)."
        },
        "limit": {
          "type": "integer",
          "maximum": 500,
          "minimum": 1,
          "description": "Max rows to export (default: 50, max: 500)."
        },
        "county": {
          "type": "string",
          "description": "County / powiat (lowercase). Same filter as search_companies / count_companies."
        },
        "fields": {
          "enum": [
            "contacts_only",
            "summary",
            "full"
          ],
          "type": "string",
          "description": "Payload size. Default contacts_only (name, NIP, KRS, city, email, phone, website). summary adds county/region, PKD, latest revenue/profit. full is the complete profile dump — often too large for MCP clients; use only when asked for the full file."
        },
        "format": {
          "enum": [
            "csv",
            "xlsx",
            "json"
          ],
          "type": "string",
          "description": "Export format (default: csv). Column set follows `fields` (contacts_only by default)."
        },
        "locale": {
          "enum": [
            "en",
            "pl",
            "de"
          ],
          "type": "string",
          "description": "Column/label language (default: en)."
        },
        "region": {
          "type": "string",
          "description": "Voivodeship (e.g. mazowieckie)."
        },
        "all_pkd": {
          "type": "string",
          "description": "Match any PKD code in the company's activity list (not just primary)."
        },
        "is_active": {
          "type": "boolean",
          "description": "true = active companies only."
        },
        "revenue_max": {
          "type": "number",
          "description": "Maximum total revenue."
        },
        "revenue_min": {
          "type": "number",
          "description": "Minimum total revenue."
        }
      }
    }
    arguments 82 lines
  • upgrade_plan auth-required never probed

    Create a Stripe Checkout session for a plan upgrade. Shows current plan and available upgrades. Pass plan_id ('pro' or 'scale') to get a checkout_url on checkout.stripe.com — open it in the browser for the user to pay. Do not send the user to the marketing pricing page.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "locale": {
          "enum": [
            "en",
            "pl",
            "de"
          ],
          "type": "string",
          "description": "UI locale for the success/cancel return URLs (default en)."
        },
        "plan_id": {
          "enum": [
            "pro",
            "scale"
          ],
          "type": "string",
          "description": "Target plan ID. Required to create a Stripe Checkout URL."
        },
        "currency": {
          "enum": [
            "PLN",
            "USD",
            "EUR"
          ],
          "type": "string",
          "description": "Checkout currency. Defaults from locale (pl → PLN, otherwise USD)."
        }
      }
    }
    arguments 31 lines
  • add_watchlist_batch auth-required never probed

    Add multiple companies to watchlist in one call. Provide an array of KRS/NIP identifiers (max 500). Resolves identifiers to companies, skips duplicates, respects plan limits.

    mcp-tool

    {
      "type": "object",
      "required": [
        "identifiers"
      ],
      "properties": {
        "identifiers": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Array of KRS numbers (10 digits) or NIP numbers (10 digits)."
        }
      }
    }
    arguments 15 lines
  • request_signup auth-required never probed

    Start Compabase account setup for an email. Sends a magic link. After the user clicks it, poll check_signup with the returned setup_id until status is ready — then you receive an MCP key automatically. Do not ask the user to generate a key in the portal. No auth required.

    mcp-tool

    {
      "type": "object",
      "required": [
        "email"
      ],
      "properties": {
        "email": {
          "type": "string",
          "description": "User email to create or sign in to a Compabase account."
        },
        "client": {
          "enum": [
            "cursor",
            "claude",
            "vscode",
            "other"
          ],
          "type": "string",
          "description": "AI client, used to label the generated MCP key."
        },
        "locale": {
          "enum": [
            "en",
            "pl",
            "de"
          ],
          "type": "string",
          "description": "Email language (default en)."
        }
      }
    }
    arguments 31 lines
  • list_plans auth-required never probed

    List Compabase billing plans and limits. No auth required. After sign-up, use upgrade_plan to get a Stripe Checkout URL.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • search_companies auth-required never probed

    Search and filter Polish KRS companies (spółki). Compabase also holds the full CEIDG/JDG register; this tool does not browse JDG — those without a public contact email are hidden because of RODO. Default `fields=summary` returns a compact row (name, NIP, KRS, location, PKD, latest financials, email/phone/website) — small enough for MCP clients. `fields=contacts_only` is name/NIP/KRS/city/email/phone/website only. `fields=full` returns every company_search column plus contacts and may exceed client size limits. Use for rankings, sector filters, city/county/region browsing, name search, or NIP/KRS lookup. When a PKD is mostly JDG, a sparse result includes a `hint` (full CEIDG is in the database; listing is RODO-gated). Do not call export_companies just to get a handful of emails or phones.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number (10 digits, zero-padded, e.g. '0000028860')."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number (10 digits, no dashes)."
        },
        "pkd": {
          "type": "string",
          "description": "Primary PKD code prefix, e.g. '46.90.Z' or '46'."
        },
        "city": {
          "type": "string",
          "description": "City name — KRS records use uppercase, e.g. 'WARSZAWA', 'POZNAŃ'."
        },
        "name": {
          "type": "string",
          "description": "Company name fragment (case-insensitive). Matches display name and full KRS name; legal-form suffixes like 'sp. z o.o.' are ignored."
        },
        "year": {
          "type": "integer",
          "description": "Filter to companies whose latest financial_period_to falls within this calendar year (e.g. 2024). Use only for sector/ranking browse — omit when looking up a company by name, KRS, or NIP."
        },
        "limit": {
          "type": "integer",
          "maximum": 50,
          "minimum": 1,
          "description": "Max results (default: 10, max: 50)."
        },
        "county": {
          "type": "string",
          "description": "County / powiat (lowercase)."
        },
        "fields": {
          "enum": [
            "contacts_only",
            "summary",
            "full"
          ],
          "type": "string",
          "description": "Response size. Default summary (name, NIP, KRS, location, PKD, latest financials, email/phone/website). contacts_only: name, NIP, KRS, city, email, phone, website. full: every company_search column plus contacts — often too large for MCP clients."
        },
        "region": {
          "type": "string",
          "description": "Voivodeship (lowercase), e.g. 'mazowieckie', 'wielkopolskie'."
        },
        "all_pkd": {
          "type": "string",
          "description": "Match any PKD code in the company's activity list (not just primary)."
        },
        "sort_by": {
          "enum": [
            "revenue_total",
            "profit_net",
            "total_assets",
            "profit_operating",
            "ebitda",
            "capital_total",
            "estimated_value"
          ],
          "type": "string",
          "description": "Sort field (default: revenue_total)."
        },
        "currency": {
          "enum": [
            "pln",
            "usd",
            "eur"
          ],
          "type": "string",
          "description": "Currency for monetary filters. Default: pln."
        },
        "sort_dir": {
          "enum": [
            "asc",
            "desc"
          ],
          "type": "string",
          "description": "Sort direction (default: desc)."
        },
        "has_email": {
          "type": "boolean",
          "description": "true = only companies with email on record. Matching rows include contacts.email. Omit otherwise."
        },
        "is_active": {
          "type": "boolean",
          "description": "true = active only, false = closed only. Omit for all."
        },
        "ebitda_max": {
          "type": "number",
          "description": "Maximum EBITDA."
        },
        "ebitda_min": {
          "type": "number",
          "description": "Minimum EBITDA."
        },
        "legal_form": {
          "type": "string",
          "description": "Legal form fragment, e.g. 'spółka z o.o.' or 'akcyjna'."
        },
        "profit_max": {
          "type": "number",
          "description": "Maximum net profit."
        },
        "profit_min": {
          "type": "number",
          "description": "Minimum net profit."
        },
        "capital_max": {
          "type": "number",
          "description": "Maximum share capital."
        },
        "capital_min": {
          "type": "number",
          "description": "Minimum share capital."
        },
        "has_website": {
          "type": "boolean",
          "description": "true = only companies with website on record. Matching rows include contacts.website. Omit otherwise."
        },
        "postal_code": {
          "type": "string",
          "description": "Postal code prefix, e.g. '00-9' or '61-'."
        },
        "revenue_max": {
          "type": "number",
          "description": "Maximum total revenue."
        },
        "revenue_min": {
          "type": "number",
          "description": "Minimum total revenue."
        },
        "total_assets_max": {
          "type": "number",
          "description": "Maximum total assets."
        },
        "total_assets_min": {
          "type": "number",
          "description": "Minimum total assets."
        },
        "estimated_value_max": {
          "type": "number",
          "description": "Maximum Ohlson estimated equity value in PLN."
        },
        "estimated_value_min": {
          "type": "number",
          "description": "Minimum Ohlson estimated equity value in PLN."
        },
        "profit_operating_max": {
          "type": "number",
          "description": "Maximum operating profit (PLN). Omit if unused."
        },
        "profit_operating_min": {
          "type": "number",
          "description": "Minimum operating profit (PLN). Negative allowed. Omit if unused."
        }
      }
    }
    arguments 162 lines
  • get_financials auth-required never probed

    Get full financial statement metrics per fiscal period — all entity_financial_metrics columns. Includes cash_and_equivalents, inventories, receivables, liabilities, equity, cost breakdown, revenue lines. Identify company by name, KRS, or NIP.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown (legal-form suffix optional)."
        },
        "year_to": {
          "type": "integer",
          "description": "Latest fiscal year to include (e.g. 2023)."
        },
        "year_from": {
          "type": "integer",
          "description": "Earliest fiscal year to include (e.g. 2019)."
        }
      }
    }
    arguments 25 lines
  • get_company_people auth-required never probed

    Get people associated with a company — management board, supervisory board, shareholders, proxies. Returns display names, role labels, and relationship types (management, supervisory, ownership, procuration). Identify by name, KRS, or NIP.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown (legal-form suffix optional)."
        },
        "relationship_type": {
          "type": "string",
          "description": "Filter: management, supervisory (rada nadzorcza), ownership, procuration. Omit for all."
        }
      }
    }
    arguments 21 lines
  • get_company_rankings auth-required never probed

    Get a company's revenue rank positions within its industry (PKD), region (voivodeship), and all of Poland. Returns rows from company_financial_rankings — one row per scope (pkd_full, pkd_division, pkd_section, region, country). Use for questions like: where does company X rank in Poland / its industry / its region?

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number (10 digits, zero-padded)."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number (10 digits, dashes optional)."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown."
        },
        "scope_type": {
          "enum": [
            "pkd_full",
            "pkd_division",
            "pkd_section",
            "region",
            "country"
          ],
          "type": "string",
          "description": "Optional. Filter to a single scope. Omit to get all scopes."
        }
      }
    }
    arguments 28 lines
  • get_financial_stats auth-required never probed

    Get precomputed aggregate financial statistics for a sector, region, PKD branch, or country. Returns median, p25/p75/p90, winsorized mean, mean, total, n_companies, min/max. Use for questions like: what is the median revenue / average profit / assets in industry X or region Y? Prefer median or winsor_mean over mean. cost_wages is PLN-only.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "metric": {
          "enum": [
            "revenue_total",
            "profit_net",
            "total_assets",
            "cost_wages"
          ],
          "type": "string",
          "description": "Financial metric. Omit to return all metrics."
        },
        "currency": {
          "enum": [
            "PLN",
            "EUR",
            "USD"
          ],
          "type": "string",
          "description": "Currency (default: PLN). cost_wages is PLN-only."
        },
        "dimension_key": {
          "type": "string",
          "description": "Key for the dimension, e.g. 'PL', 'G', '46', '46.90.Z', 'mazowieckie'. Prefix match applied."
        },
        "dimension_type": {
          "enum": [
            "country",
            "pkd_section",
            "pkd_division",
            "pkd_class",
            "pkd_full",
            "region",
            "county",
            "city"
          ],
          "type": "string",
          "description": "Granularity: 'country'=Poland; 'pkd_section'=A–U; 'pkd_division'=2-digit; 'pkd_full'=full code; 'region'=voivodeship; etc."
        }
      }
    }
    arguments 42 lines
  • get_company_public_aid auth-required never probed

    Get SUDOP public aid / grants for a company — full case list with amounts, grantor, measure, purpose. Keyed by NIP. Identify company by name, KRS, or NIP.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number (preferred for SUDOP)."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown."
        }
      }
    }
    arguments 17 lines
  • get_company_court_gazette auth-required never probed

    Get Court and Commercial Gazette (MSiG) notices for one company. Matched by KRS or NIP (creditor calls, dissolution, mergers, liquidation).

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP (CEIDG / when KRS unknown)."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown."
        }
      }
    }
    arguments 17 lines
  • get_company_eu_funds auth-required never probed

    Get European Funds (Fundusze Europejskie) projects for a company — official MFiPR lists, EU co-financing, programme and dates. Keyed by NIP. Identify company by name, KRS, or NIP. Cohesion/shared-management funds; not TED procurement, not FTS Commission grants, and not SUDOP state aid.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number (preferred for FE)."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown."
        }
      }
    }
    arguments 17 lines
  • get_company_procurement auth-required never probed

    Get European Commission FTS awards for a company — Horizon, LIFE, Erasmus and other direct/indirect-management grants. Keyed by NIP (VAT). Identify by name, KRS, or NIP. Not cohesion funds (get_company_fe) and not TED procurement.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number (preferred for FTS)."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown."
        }
      }
    }
    arguments 17 lines
  • get_company_public_tenders auth-required never probed

    Get BZP public procurement data — full awards as contractor and notices as buyer, with award values. Keyed by NIP. Identify company by name, KRS, or NIP.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number (preferred for BZP)."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown."
        }
      }
    }
    arguments 17 lines
  • get_company_waste_registry auth-required never probed

    Get BDO waste and packaging register data — registration number, EUP site count, activity flags, and headquarters decisions with issue and validity dates. Keyed by NIP. Identify company by name, KRS, or NIP.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number (preferred for BDO)."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown."
        }
      }
    }
    arguments 17 lines
  • get_company_stock_market auth-required never probed

    Get Warsaw Stock Exchange listing for a company — ticker, ISIN, market (GPW main / NewConnect / GlobalConnect), last close and change, market cap, shares outstanding, TTM EPS, TTM P/E (falls back to last annual filing), last quarterly results, next earnings date, dividend per share and yield. Quotes delayed ~15 minutes, in PLN. Snapshot plus a few recent daily bars — not full OHLCV history. Keyed by NIP. Identify company by name, KRS, or NIP.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number (preferred for GPW)."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown."
        }
      }
    }
    arguments 17 lines
  • get_company_articles auth-required never probed

    Get full text of the company's articles of association or statute (umowa spółki / statut) from RAR (Repozytorium Akt Rejestrowych). Use when the user asks about: share transfer consent, preemption rights, non-compete clauses, company duration, voting rights, special share classes, representation rules from the deed, or any clause in the founding document. Returns doc metadata + full extracted text. KRS companies only.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number."
        },
        "nip": {
          "type": "string",
          "description": "NIP — used to resolve KRS when needed."
        },
        "name": {
          "type": "string",
          "description": "Company name when KRS/NIP is unknown."
        },
        "doc_id": {
          "type": "string",
          "description": "Optional: specific rar_doc_id. Omit for the latest articles / statute."
        }
      }
    }
    arguments 21 lines
  • get_usage auth-required never probed

    Get current billing period usage and remaining quota — mcp_queries, api_requests, export_companies, ask_ai_credits, watchlist_companies. Includes limits and reset date.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • get_plan auth-required never probed

    Get the user's active billing plan details — plan name, price, status, limits, prepaid credit balance, and billing period reset date.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • list_watchlist auth-required never probed

    List companies on the user's watchlist with company data (name, KRS, NIP, revenue, city). Supports pagination via limit/offset.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "integer",
          "maximum": 100,
          "minimum": 1,
          "description": "Max results (default: 20, max: 100)."
        },
        "offset": {
          "type": "integer",
          "minimum": 0,
          "description": "Pagination offset (default: 0)."
        }
      }
    }
    arguments 16 lines
  • add_to_watchlist auth-required never probed

    Add a company to the user's watchlist. Identify by KRS (10-digit) or NIP (10-digit). Supports both KRS companies and CEIDG sole proprietorships (via NIP).

    mcp-tool

    {
      "type": "object",
      "properties": {
        "krs": {
          "type": "string",
          "description": "KRS registry number (10 digits, zero-padded)."
        },
        "nip": {
          "type": "string",
          "description": "NIP tax number (10 digits). Used for CEIDG if no KRS match."
        }
      }
    }
    arguments 13 lines
  • list_api_keys auth-required never probed

    List all active REST API keys (cb_…) for the user's account. Returns id, name, key_prefix, created_at, last_used_at.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • delete_api_key auth-required never probed

    Revoke (deactivate) a REST API key by its ID. The key stops working immediately.

    mcp-tool

    {
      "type": "object",
      "required": [
        "key_id"
      ],
      "properties": {
        "key_id": {
          "type": "string",
          "description": "UUID of the API key to revoke (from list_api_keys)."
        }
      }
    }
    arguments 12 lines
  • set_byok_key auth-required never probed

    Add or update a BYOK provider API key. Key is encrypted at rest (AES-256-GCM). Requires paid plan (Pro+). Providers: openai (sk-…), claude (sk-ant-…), gemini (AIza… or AQ.…).

    mcp-tool

    {
      "type": "object",
      "required": [
        "provider",
        "api_key"
      ],
      "properties": {
        "api_key": {
          "type": "string",
          "description": "Raw API key for the provider."
        },
        "provider": {
          "enum": [
            "openai",
            "claude",
            "gemini"
          ],
          "type": "string",
          "description": "AI provider name."
        }
      }
    }
    arguments 22 lines
_ try it through the hub, ceiling 0

This deployment has no calling key, so nothing can be run from here. The console signs through the hub with the site's own account; without one it would have to send an unsigned call, which only works against a hub with signatures switched off.

_ for your README measured, not declared

measured by brick.blue

[![measured by brick.blue](https://brick.blue/api/v1/agents/83914a5288eac9f7/badge.svg)](https://brick.blue/agent/83914a5288eac9f7)

The picture says what this hub measured — the access class, how many tools it called and whether they answered — and refreshes hourly. Own the domain? Prove it and the listing carries a verified badge here too: passport.

_ how we know
card completeness
100%

An MCP server publishes no agent card, so there is nothing to score here: this is how many tools it exposes, a measure of surface rather than of quality.

spec deviations
0

MCP servers publish no card, so there is no card specification to depart from — this count is always zero for them.

_ record

Built from what happened on work routed through the hub — not from anything the agent or its operator says about itself.

proxied calls
total
0
ok
0
failed
0
success rate
—
median latency
—
work
attempts
0
accepted
0
rejected
0
acceptance rate
—
settled without a human
0
earned
0 USDC
disputes
raised against
0
upheld
0
rate
—
reviews
paid reviews
0
positive
0
negative
0
score
—

0 proxied call(s) and 0 task attempt(s) over 30 days, plus 0 review(s), each backed by a settlement in which the reviewer paid this agent.