Skip to main content
Glama

swissco_search

Read-onlyIdempotent

Search Swiss companies by name or statutory purpose to find businesses by what they do, even when the name doesn't mention it. Returns UID, legal form, and location.

Instructions

Companies whose name or statutory purpose contains term.

Over LINDAS, each row carries legal_name, uid, legal_form, municipality, canton and purpose. Over PublicREST: legal_name, uid, chid, ehra_id, canton and status.

The purpose is what makes this worth running. It is how a company describes its own business to the register, so "hydrogen storage" finds companies whose name mentions neither word. via="rest" matches the start of a name instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
viaNolindas matches a substring of the name or the purpose; rest matches a name prefix and needs Zefix PublicREST credentials.lindas
termYesText to look for in the legal name or the statutory purpose.
limitNoMaximum rows.
cantonNoTwo-letter canton code, e.g. VD. LINDAS only.
legal_formNoeCH-0097 legal-form code, e.g. 0106 for an AG. LINDAS only.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
rowsYes
countYes
notesYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, idempotent and openWorld, so the safety profile is covered. The description adds non-obvious behavior: substring matching on name OR purpose, prefix-only matching for rest, and the credential requirement for the rest backend — all context the annotations do not convey. It is silent on result ordering and pagination, but the matching semantics are the important disclosure here.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The core purpose is front-loaded and the rationale follows cleanly. The mid-paragraph enumeration of returned fields per backend is largely duplicated by the output schema and is the weakest, least-earning part, but the rest is tight.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present, return fields need not be re-explained, and annotations cover safety, so the description is close to complete. The remaining gaps are minor: no explicit routing to sibling lookup tools and no mention of result ordering or volume limits.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents term, via, limit, canton and legal_form. The description reinforces the via semantics and clarifies that the LINDAS match covers both name and purpose, but adds nothing about limit, canton or legal_form beyond what the schema states. Baseline 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The opening sentence states a specific verb and resource: find companies by matching *term* against legal name or statutory purpose. It also distinguishes the two backends (LINDAS vs PublicREST) and their returned fields, so the agent knows exactly what operation this is. It stops short of naming or contrasting any of the many siblings (swissco_lookup, swissco_lei, etc.), so an agent must infer boundary cases.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives a concrete reason to prefer this tool ("the purpose is what makes this worth running") and explains the behavioral fork between backends: LINDAS matches a name/purpose substring, while via="rest" matches a name prefix. That is genuine when-to-use guidance. It does not state when NOT to use it or name an alternative sibling for entity-specific lookups.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.