Skip to main content
Glama

proxy_list_fingerprint_presets

Browse available browser fingerprint configurations to customize proxy traffic identity for testing and development purposes.

Instructions

List available browser fingerprint presets for use with proxy_set_fingerprint_spoof.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler for the proxy_list_fingerprint_presets tool, which calls listBrowserPresets and returns the result.
    async () => {
      return {
        content: [{
          type: "text" as const,
          text: JSON.stringify({
            status: "success",
            presets: listBrowserPresets(),
          }),
        }],
      };
  • Registration of the proxy_list_fingerprint_presets tool.
    server.tool(
      "proxy_list_fingerprint_presets",
      "List available browser fingerprint presets for use with proxy_set_fingerprint_spoof.",
      {},
  • Helper function that retrieves and formats the list of browser fingerprint presets.
    export function listBrowserPresets(): Array<{ name: string; description: string }> {
      return Object.values(PRESETS).map(({ name, description }) => ({ name, description }));
    }
Install Server

Other Tools

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/yfe404/proxy-mcp'

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