Skip to main content
Glama

proxy_list_fingerprint_presets

List browser fingerprint presets for proxy spoofing configuration. Select presets to mimic browser TLS signatures.

Instructions

List available browser fingerprint presets for use with proxy_set_fingerprint_spoof.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • MCP tool registration for proxy_list_fingerprint_presets in the registerTlsTools function
    server.tool(
      "proxy_list_fingerprint_presets",
      "List available browser fingerprint presets for use with proxy_set_fingerprint_spoof.",
      {},
      async () => {
        return {
          content: [{
            type: "text" as const,
            text: JSON.stringify({
              status: "success",
              presets: listBrowserPresets(),
            }),
          }],
        };
      },
    );
  • Handler function that calls listBrowserPresets() and returns the result
      async () => {
        return {
          content: [{
            type: "text" as const,
            text: JSON.stringify({
              status: "success",
              presets: listBrowserPresets(),
            }),
          }],
        };
      },
    );
  • Empty schema — this tool takes no input parameters
    {},
  • Helper that returns available browser presets (name + description) from the PRESETS constant
    export function listBrowserPresets(): Array<{ name: string; description: string }> {
      return Object.values(PRESETS).map(({ name, description }) => ({ name, description }));
    }
  • The PRESETS constant defining all available browser fingerprint presets (chrome_131, chrome_136, chrome_136_linux, firefox_133, okhttp3/4/5)
    const PRESETS: Record<string, BrowserPreset> = {
      chrome_131: {
        name: "chrome_131",
        description: "Chrome 131 on Windows 10/11 (approx.)",
        userAgent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36",
        impitBrowser: "chrome131",
      },
    
      chrome_136: {
        name: "chrome_136",
        description: "Chrome 136 on Windows 10/11 (approx.)",
        userAgent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36",
        impitBrowser: "chrome136",
      },
    
      chrome_136_linux: {
        name: "chrome_136_linux",
        description: "Chrome 136 on Linux x86_64 (approx.)",
        userAgent: "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36",
        impitBrowser: "chrome136",
      },
    
      firefox_133: {
        name: "firefox_133",
        description: "Firefox 133 on Windows 10/11 (approx.)",
        userAgent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0",
        impitBrowser: "firefox133",
      },
    
      okhttp3: {
        name: "okhttp3",
        description: "OkHttp 3.14.9 (Android/Java HTTP client)",
        userAgent: "okhttp/3.14.9",
        impitBrowser: "okhttp3",
      },
    
      okhttp4: {
        name: "okhttp4",
        description: "OkHttp 4.12.0 (Android/Kotlin HTTP client)",
        userAgent: "okhttp/4.12.0",
        impitBrowser: "okhttp4",
      },
    
      okhttp5: {
        name: "okhttp5",
        description: "OkHttp 5.0.0 (Android/Kotlin HTTP client)",
        userAgent: "okhttp/5.0.0",
        impitBrowser: "okhttp5",
      },
    };
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must fully disclose behavioral traits. It only says 'list available', with no mention of side effects, permissions, or state changes. For a read-only listing tool, the absence of any explicit statement about non-destructiveness is a gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clean sentence with no extra words. It front-loads the action and purpose, making it highly efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a parameterless listing tool with no output schema, the description provides the basic purpose. However, it lacks details about what the output looks like (e.g., list of strings, objects) and any usage context, making it minimally adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has no parameters, so the baseline is 4. The description does not add further meaning, but since there are no parameters, no additional information is strictly needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'List available browser fingerprint presets', specifying the verb 'list' and the resource 'browser fingerprint presets'. It also indicates the purpose 'for use with proxy_set_fingerprint_spoof', distinguishing it from sibling tools that set or check fingerprints.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description only hints at usage with proxy_set_fingerprint_spoof but does not provide explicit guidance on when to use this tool or when to avoid it. No alternatives are mentioned, and with many sibling tools, more context is needed.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

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