get_version
Retrieve the current HTTP Toolkit server version to verify installation and ensure compatibility with debugging tools.
Instructions
Get the current HTTP Toolkit server version
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:32-40 (registration)Tool 'get_version' registration in the MCP server.
server.registerTool( 'get_version', { title: 'Get Server Version', description: 'Get the current HTTP Toolkit server version', inputSchema: z.object({}), }, async () => jsonResult(await client.getVersion()) ); - src/httptoolkit-client.ts:73-75 (handler)The actual implementation of getVersion which makes the REST API call to '/version'.
async getVersion(): Promise<{ version: string }> { return this.request('GET', '/version'); }