Skip to main content
Glama

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
NameRequiredDescriptionDefault

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())
    );
  • The actual implementation of getVersion which makes the REST API call to '/version'.
    async getVersion(): Promise<{ version: string }> {
      return this.request('GET', '/version');
    }

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/fdciabdul/httptoolkit-mcp'

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