get_skill
Retrieve the recommended process for bulk uploading food packaging photos to the Open Food Facts database.
Instructions
Get the OFF upload skill document. This describes the recommended process for bulk uploading food packaging photos to Open Food Facts.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/get-skill.ts:19-22 (handler)The handler function for get_skill which returns the contents of the SKILL.md file.
async (): Promise<CallToolResult> => ({ content: [{type: 'text' as const, text: SKILL_CONTENT}], }), ); - src/tools/get-skill.ts:10-22 (registration)The registration of the get_skill tool.
server.registerTool( 'get_skill', { title: 'Get skill', description: 'Get the OFF upload skill document. This describes the recommended process for bulk uploading food packaging photos to Open Food Facts.', annotations: { readOnlyHint: true, }, }, async (): Promise<CallToolResult> => ({ content: [{type: 'text' as const, text: SKILL_CONTENT}], }), );