Skip to main content
Glama

shutdown_server

Stop the HTTP Toolkit server to end all traffic interception and debugging sessions. Use this tool when you need to halt HTTP(S) monitoring for browsers, mobile devices, or Docker containers.

Instructions

Shutdown the HTTP Toolkit server. WARNING: This will stop all interception.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The actual implementation of the shutdownServer logic, which performs the POST request to /shutdown.
    async shutdownServer(): Promise<{ success: boolean }> {
      return this.request('POST', '/shutdown');
    }
  • src/index.ts:75-83 (registration)
    The registration of the 'shutdown_server' MCP tool.
    server.registerTool(
      'shutdown_server',
      {
        title: 'Shutdown Server',
        description: 'Shutdown the HTTP Toolkit server. WARNING: This will stop all interception.',
        inputSchema: z.object({}),
      },
      async () => jsonResult(await client.shutdownServer())
    );

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