Skip to main content
Glama

proxy_get_session_handshakes

Retrieve TLS handshake details including JA3/JA4/JA3S fingerprints for session traffic analysis in proxy-mcp server.

Instructions

Summarize TLS handshake/fingerprint availability (JA3/JA4/JA3S) for session exchanges.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_idYesSession ID
limitNo
offsetNo
sortNodesc
hostname_containsNoFilter by hostname substring
url_containsNoFilter by URL substring

Implementation Reference

  • The handler for the 'proxy_get_session_handshakes' tool, which wraps the proxyManager.getSessionHandshakes function.
    server.tool(
      "proxy_get_session_handshakes",
      "Summarize TLS handshake/fingerprint availability (JA3/JA4/JA3S) for session exchanges.",
      {
        session_id: z.string().describe("Session ID"),
        limit: z.number().optional().default(200),
        offset: z.number().optional().default(0),
        sort: z.enum(["asc", "desc"]).optional().default("desc"),
        hostname_contains: z.string().optional().describe("Filter by hostname substring"),
        url_contains: z.string().optional().describe("Filter by URL substring"),
      },
      async ({ session_id, limit, offset, sort, hostname_contains, url_contains }) => {
        try {
          const report = await proxyManager.getSessionHandshakes(session_id, {
            limit,
            offset,
            sort,
            hostnameContains: hostname_contains,
            urlContains: url_contains,
          });
          return {
            content: [{ type: "text", text: truncateResult({ status: "success", ...report }) }],
          };
        } catch (e) {
          return { content: [{ type: "text", text: JSON.stringify({ status: "error", error: toError(e) }) }] };
        }
      },
    );
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