rzpro

Query the Czech RZPRO medical device registry by name, evidence number, or catalogue number.

2|1|Updated Mar 30, 2026
One-click install
npx skills add https://github.com/atlasgroupcz/codexis-marketplace --skill rzpro-atlasgroupcz
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: rzpro
Source: https://github.com/atlasgroupcz/codexis-marketplace/tree/main/plugins/rzpro/skills/rzpro
Command: npx skills add https://github.com/atlasgroupcz/codexis-marketplace --skill rzpro-atlasgroupcz

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Looking up medical devices in the Czech Register of Medical Devices (RZPRO/KSRZIS) normally requires manual searches on the registry portal. This Skill provides structured, scriptable access to device records, manufacturers, risk classes, variants, and registered persons through a single CLI tool. ## Core Features & Use Cases - Device Search: Find devices by fulltext query, evidence number, catalogue number, device kind, risk class, manufacturer country, or IČO, with pagination and sorting. - Detailed Records: Retrieve full device metadata including intended purpose, variants, catalogue numbers, validity, and linked registered persons. - Person/Company Lookup: Search registered companies by name or IČO and list the devices they have notified. - Use Case: A regulatory affairs specialist needs to verify which device a catalogue number belongs to and check its risk class and manufacturer before a procurement decision - one search command returns the answer as JSON. ## Quick Start Ask the assistant to find catheters in the RZPRO medical device register and list each device's manufacturer and risk class.

Frequently Asked Questions about rzpro

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I look up a medical device in the Czech RZPRO registry?▼

Use rzpro-cli search CZRZP with a fulltext query, evidence number, or catalogue number, then pipe the JSON output through jq to select fields like name, risk class, and manufacturer. Follow up with rzpro-cli get on the docId for the full device record.

How do I find which device a catalogue number belongs to?▼

Run rzpro-cli search CZRZP with the --katalogove-cislo flag and the catalogue number. The results include the docId, device name, and manufacturer, and you can fetch full details with rzpro-cli get rzpro://doc/<docId>/meta.

Why does filtering by risk class return zero results in RZPRO?▼

Risk classes are tied to the device kind, so using a class from the wrong family returns nothing. Active implantable devices use AI instead of III, and IVD devices use IVD, IVD A/B, IVDst, or IVDR A-D classes.

Can I search for companies registered in the RZPRO registry?▼

Yes, use rzpro-cli search CZRZP-OS with a name query or --ico for an exact IČO match. For a single registered person, rzpro-cli get rzpro://osoba/<IČO> returns the person record plus the devices they notified.

What are the pagination limits when searching the RZPRO registry?▼

Search returns at most 100 results per call with a default limit of 20, and offset plus limit cannot exceed 10000. Use --limit 1 to read only the total count, or --limit 100 upfront when you need complete result sets.