Know of an official OpenAPI document? Contribute it →
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the CDISC Library API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fcdisc.org%2Fcdisc" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fcdisc.org%2Fcdisc" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with CDISC Library API.
Search the CDISC Library for standards content
List the standards products the library publishes
Read controlled terminology packages, codelists, and terms
Look up CDASH classes and domains by version
Look up SDTM classes and datasets by version
Patterns agents use CDISC Library API for, with concrete tasks.
★ AI agent clinical standards lookup
An AI agent building clinical data mappings can pull CDISC metadata on demand. Through Jentic the agent searches by intent and the API key never enters its prompt context, so a standards assistant can look up codelists and datasets without a hand-built integration.
Use Jentic to search 'search the CDISC Library', call GET /mdr/search with a query, and read the matching standards content.
Controlled terminology retrieval
A data-management agent needs the exact terms in a controlled terminology codelist. It lists the terminology packages and then reads a codelist's terms, keeping submissions aligned to the published values rather than a stale copy.
List packages with GET /mdr/ct/packages, then read the terms via GET /mdr/ct/packages/{package}/codelists/{codelist}/terms.
SDTM dataset mapping
When mapping source data to SDTM, an agent needs the datasets defined for a version. It reads the SDTM datasets for a version so a mapping workflow builds against the correct structure.
Read SDTM datasets for a version via GET /mdr/sdtm/{version}/datasets and use them to build a mapping.
144 endpoints — the cdisc library api serves cdisc's clinical research data standards as structured metadata.
METHOD
PATH
DESCRIPTION
/mdr/search
Search the CDISC Library
/mdr/products
List standards products
/mdr/ct/packages
List controlled terminology packages
/mdr/ct/packages/{package}/codelists/{codelist}/terms
Read a codelist's terms
/mdr/cdash/{version}
Read a CDASH version
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the CDISC Library API by hand means managing its api-key header against api.library.cdisc.org and encoding the search and standards calls yourself. Through Jentic you install once, import it from the API Directory, store the key once, and your agent calls it.
Permission scoping
The library puts the package, codelist, and version in the URL path (/mdr/ct/packages/{package}/codelists/{codelist}/terms), so a rule can pin your agent to a package or standard. You choose the operations it may call, and the whole surface is read-only.
Credential isolation
Your CDISC API key is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'read a codelist' or 'list SDTM datasets', and Jentic returns the matching operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using CDISC Library API through Jentic.
Is there a CDISC Library API MCP server?
You don't need an MCP server to give your agent the CDISC Library. Jentic connects it directly from the API Directory: import it, store your key once, and your agent calls the search and standards operations. That keeps your agent's context free of an extra server's tool definitions.
What authentication does the CDISC Library API use?
It authenticates with an API key sent in the api-key header, per its OpenAPI spec. Through Jentic the key is stored encrypted by your own instance and injected at call time, so it never reaches the agent's context.
Can I look up controlled terminology with the CDISC Library API?
Yes. GET /mdr/ct/packages lists the terminology packages, and GET /mdr/ct/packages/{package}/codelists/{codelist}/terms returns the terms in a specific codelist so a submission uses the published values.
How do I search the CDISC Library through Jentic?
Search Jentic for 'search the CDISC Library', load the input schema, and execute GET /mdr/search with your query. To run it on your own infrastructure, install Jentic One from its GitHub repo.
Can I limit what my agent is allowed to do with the CDISC Library API?
Yes. Write a rule that allows only the search and controlled-terminology operations, so the agent can read standards content and codelists and nothing else, and every call it makes is logged. Because the whole surface is read-only, no operation can change library data regardless.
GET STARTED
CDASH domain reference
A study-design agent references CDASH domains when designing data-collection forms. It reads the CDASH domains for a class and version, so a form-design workflow follows the published CDASH structure.
Read CDASH domains via GET /mdr/cdash/{version}/classes/{className}/domains for the study's version.
/mdr/cdash/{version}/classes/{className}/domains
Read CDASH domains for a class
/mdr/sdtm/{version}
Read an SDTM version
/mdr/sdtm/{version}/datasets
Read SDTM datasets for a version
/mdr/search
Search the CDISC Library
/mdr/products
List standards products
/mdr/ct/packages
List controlled terminology packages
/mdr/ct/packages/{package}/codelists/{codelist}/terms
Read a codelist's terms
/mdr/cdash/{version}
Read a CDASH version
/mdr/cdash/{version}/classes/{className}/domains
Read CDASH domains for a class
/mdr/sdtm/{version}
Read an SDTM version
/mdr/sdtm/{version}/datasets
Read SDTM datasets for a version
For Agents
Search the CDISC Library, list its products, read controlled terminology packages, codelists, and terms, and look up CDASH and SDTM classes, domains, and datasets by version.
Use for: Search the CDISC Library for a term or standard, List the products the CDISC Library publishes, Read a controlled terminology codelist and its terms, Get the CDASH domains for a version
Not supported: Does not store patient data, run studies, or write to the library. Use for reading CDISC standards metadata and controlled terminology only.
The CDISC Library API serves CDISC's clinical research data standards as structured metadata. It searches the library, lists the available products, and reads controlled terminology packages, codelists, and terms. It also returns CDASH and SDTM classes, domains, and datasets by version. Authentication uses an API key, and the surface is read-only for tooling that builds against CDISC standards.
This API is usable in Jentic One now. Its AI-readiness score against Jentic's framework shows where it stands today and where improvements would make it even easier for agents to use.
Base layer of spec validity and structural soundness.
Aggregated quality score from linter diagnostics, weighted by severity.
Percentage of `$ref` references that resolve successfully.
Checks whether the API description parses successfully and conforms to its declared specification (e.g., OpenAPI).
Structural correctness score based on schema issues using logarithmic dampening.
Clarity, completeness, and ingestion readiness for developers and tooling.
How richly the API is illustrated with examples.
Percentage of examples that conform to their schemas.
Percentage of operations with complete response definitions (success, client error, server error).
Health of API ingestion, bundling, and resolution within Jentic pipelines.
Semantic breadth, depth, and agent comprehension for AI systems.
Coverage of descriptions across API elements.
Coverage of RFC 9457 Problem Details for error responses.
Coverage, uniqueness, and casing consistency of operationIds for AI inference.
Coverage of summaries across operations/tags/info.
Functional utility, complexity comfort, and AI orchestration readiness.
Agent comfort level based on API operational and structural complexity.
Trust, risk posture, and security compliance.
Average quality of security schemes based on authentication method strength (weakest link for OAuth2).
Findability, semantic richness, and reasoning readiness.
Clarity and depth of descriptions across API elements.
Score it yourself
Every API in the directory is allowlisted, so you can re-score it with no key required.
npx @jentic/api-scorecard-cli score <openapi-url>