get_qr_code
Retrieve details of an existing QR code by its short ID to access the target URL, metadata, and timestamps for tracking purposes.
Instructions
Retrieve details of an existing QR code by its short ID. Returns the current target URL, metadata, and timestamps.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| short_id | Yes | The short ID of the QR code to look up. |
Implementation Reference
- packages/mcp/src/tools.ts:110-119 (handler)The handler for 'get_qr_code' which fetches QR code details from the API.
get_qr_code: { description: "Retrieve details of an existing QR code by its short ID. Returns the current target URL, metadata, and timestamps.", inputSchema: z.object({ short_id: z.string().describe("The short ID of the QR code to look up."), }), handler: async (input: { short_id: string }) => { return apiRequest(`/api/qr/${input.short_id}`); }, },