Skip to main content
Glama

edubase_put_exam_certificates

Idempotent

Replace an exam's entire certificate configuration by applying a preset or copying another exam's settings, including signature, stamp, and logo images. Certificates must be enabled and the exam unlocked.

Instructions

Replace the complete certificate configuration of an exam with a preset or with the configuration of another exam. The certificates have to be enabled for the exam, and its settings cannot be changed while it is locked.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
examYesexam identification string (the target exam)
presetNocertificate preset identification string (see edubase_get_exam_certificates_presets), the settings of the preset are applied to the exam, and they are kept up to date with the preset
sourceNoexam identification string to copy the certificate configuration from, must be different from the target exam, and its certificates have to be configured manually (not by a preset), the images (signatures, stamp and logo) are copied as well

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
examYesexam identification string
notesNonotes displayed at the bottom of the certificates
renewNowhether the certificates can be renewed (only present if show_expiration is enabled), false: the certificates cannot be renewed, true: the certificates can be renewed any time, number: the number of days the renewal is available from, relative to the expiry (0 is the day of the expiry, negative values open the renewal before it)
text1Notext displayed under the data of the examinee, the multi line texts (text1, text2 and notes) are returned with basic HTML formatting and line breaks
text2Notext displayed under the results, above the date of the test
titleNotitle of the certificates
presetNoidentification string of the certificate preset configuring the certificates (see edubase_get_exam_certificates_presets), null if the certificates are configured manually
enabledYescertificates are issued for the exam, the configuration itself is only returned when the certificates are enabled
languageNolanguage of the certificates
timezoneNotimezone of the dates on the certificates, null if the timezone of the exam is used
text_dateNotext displayed before the date of the test
configuredYesthe certificates are configured, so they can be issued
email_sendNothe certificates are sent to the examinees in email automatically
expirationNovalidity period of the certificates in days (only present if show_expiration is enabled)
show_customNocustom user data is displayed
show_resultNothe result of the test is displayed
show_serialNothe certificates get a serial number
custom_fieldsNocustom user data displayed as extra data (only present if show_custom is enabled), the custom user data fields of the exam are identified by their label (see edubase_get_exam_fields), the data fields of the user accounts by their customer_ prefixed name
hide_timezoneNothe timezone information is hidden
result_formatNoformat of the displayed result (only present if show_result is enabled)
serial_formatNoformat of the serial numbers (only present if show_serial is enabled)
serial_prefixNoprefix of the serial numbers (only present if show_serial is enabled)
branding_imageNothe uploaded logo is displayed (only present if show_custom_branding is enabled)
branding_line1Noname of the organization (only present if show_custom_branding is enabled)
branding_line2Nosecond line of the branding (only present if show_custom_branding is enabled)
branding_line3Nothird line of the branding (only present if show_custom_branding is enabled)
branding_line4Nofourth line of the branding (only present if show_custom_branding is enabled)
manual_renewalNothe renewal has to be approved by a supervisor (only present if show_expiration is enabled)
show_signatureNosignatures are displayed
signature_leftNothe signature of the first organizer is displayed (only present if show_signature is enabled)
signature_userNoa signature line is displayed for the examinee (only present if show_signature is enabled)
show_expirationNothe certificates expire and their validity is displayed
signature_rightNothe signature of the second organizer is displayed (only present if show_signature is enabled)
signature_stampNothe uploaded stamp is displayed between the signatures (only present if show_signature is enabled)
branding_edubaseNothe EduBase logo is displayed (only present if show_custom_branding is enabled)
serial_separatorNoseparator between the parts of the serial numbers (only present if show_serial is enabled)
supervisors_onlyNoonly the supervisors can issue the certificates, the examinees cannot get their own ones
grading_thresholdNothreshold of the certificates in percentage, overriding the threshold of the grading, null if the threshold of the grading is used
custom_user_fieldsNocustom user data displayed together with the data of the examinee (only present if show_custom is enabled)
serial_index_digitsNominimum length of the index in the serial numbers (only present if show_serial is enabled)
show_custom_brandingNocustom branding (logo and organization name) is displayed
signature_left_imageNothe uploaded image of the first signature is displayed (only present if show_signature is enabled)
signature_left_line1Noname of the first organizer (only present if show_signature is enabled)
signature_left_line2Nosecond line of the first signature (only present if show_signature is enabled)
signature_left_line3Nothird line of the first signature (only present if show_signature is enabled)
signature_left_line4Nofourth line of the first signature (only present if show_signature is enabled)
signature_right_imageNothe uploaded image of the second signature is displayed (only present if show_signature is enabled)
signature_right_line1Noname of the second organizer (only present if show_signature is enabled)
signature_right_line2Nosecond line of the second signature (only present if show_signature is enabled)
signature_right_line3Nothird line of the second signature (only present if show_signature is enabled)
signature_right_line4Nofourth line of the second signature (only present if show_signature is enabled)
download_automaticallyNothe certificate is downloaded automatically when the examinee opens the results page
show_birthdate_birthplaceNothe birth date and the birth place of the examinee are displayed
automatic_renewal_approvalNothe renewal is approved automatically, but it stays revocable (only present if show_expiration is enabled)
expiration_notification_emailsNoemail addresses notified about the expiring certificates (only present if show_expiration is enabled)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Addedv1.2.16

TDQS

A4.3/5.0
Behavior4/5

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

Beyond the annotations, the description adds meaningful behavioral detail: the target exam's certificates must already be enabled, settings cannot be changed while locked, preset settings are kept in sync with the preset, and source images are copied. It does not contradict the annotations; 'replace' is consistent with the idempotent put semantics.

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

Conciseness5/5

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

Two concise sentences, with the primary action front-loaded and the key preconditions following immediately. Every sentence adds necessary operational context with no filler.

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

Completeness3/5

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

The operation, preconditions, and parameter meanings are mostly covered by the description and the detailed schema. However, the description does not explicitly state that exactly one of 'preset' or 'source' must be provided, and the schema only requires 'exam', so an agent could attempt an invalid call with neither or both.

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

Parameters4/5

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

Schema description coverage is 100%, so the baseline is 3, but the description adds the important high-level relationship between the parameters: the target exam is updated with either a preset or a source exam's configuration. This helps an agent understand that 'preset' and 'source' are alternative sources, even though the schema does not enforce exactly one.

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

Purpose5/5

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

The description clearly identifies the action ('Replace') and the exact resource it operates on: the complete certificate configuration of an exam. It also names the two alternative inputs (preset or another exam's configuration), which distinguishes this full-replacement operation from sibling certificate tools like post/delete/get.

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?

The description gives clear context for when to use the tool: when the entire certificate configuration must be replaced using either a preset or another exam's configuration. It also states preconditions (certificates must be enabled, exam must not be locked), though it does not explicitly name alternatives or when not to use it.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/EduBase/MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server