trigger_update
Manually check for and apply available updates to the HTTP Toolkit server to ensure access to current features and security improvements.
Instructions
Trigger an update check for the HTTP Toolkit server
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/httptoolkit-client.ts:183-185 (handler)The implementation of the triggerUpdate method which performs the network request.
async triggerUpdate(): Promise<{ success: boolean }> { return this.request('POST', '/update'); } - src/index.ts:65-73 (registration)The registration of the 'trigger_update' tool.
server.registerTool( 'trigger_update', { title: 'Trigger Server Update', description: 'Trigger an update check for the HTTP Toolkit server', inputSchema: z.object({}), }, async () => jsonResult(await client.triggerUpdate()) );