MCP server intelligence profile

Deobfuscate MCP Server

An LLM-optimized server for reverse-engineering and navigating minified JavaScript bundles by splitting them into searchable, individual modules.

Local OnlyMadeByTokens
Awaiting current scanNpm · 1.0.1

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
10Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install deobfuscate-mcp-server from npm

Version 1.0.1 declares 1 executable entrypoint.

npm install --save-exact deobfuscate-mcp-server@1.0.1
npx -y -p deobfuscate-mcp-server@1.0.1 deobfuscate-mcp-server
MCP client configuration example
{
  "mcpServers": {
    "deobfuscate-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "deobfuscate-mcp-server@1.0.1",
        "deobfuscate-mcp-server"
      ]
    }
  }
}

Identity

Canonical slugdeobfuscate-mcp-server-678d616fDeploymentLocal Only
Canonical packagenpm:deobfuscate-mcp-serverRepositoryMadeByTokens/deobfuscate-mcp-server
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmdeobfuscate-mcp-server1.0.11Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmdeobfuscate-mcp-server1.0.1CurrentSep 5, 202610 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
deobfuscate-mcp-serverServer-reported name
1Capability groups
Aug 17, 2026Observed

Tools 10

ToolCategoryAnnotationsRisk
analyze_structureReturns structural summary (AST) of code.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "maxLength": 52428800
    },
    "filePath": {
      "type": "string"
    },
    "limit": {
      "default": 50,
      "type": "number"
    }
  }
}
deobfuscateUnpacks/deobfuscates minified code & caches result.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "maxLength": 52428800
    },
    "filePath": {
      "type": "string"
    },
    "unbundle": {
      "default": true,
      "type": "boolean"
    },
    "returnCode": {
      "default": false,
      "type": "boolean"
    },
    "mangle": {
      "default": false,
      "type": "boolean"
    },
    "jsx": {
      "default": true,
      "type": "boolean"
    },
    "skipVendor": {
      "default": false,
      "type": "boolean"
    }
  }
}
format_codeFormats code with Prettier.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "maxLength": 52428800
    },
    "filePath": {
      "type": "string"
    },
    "parser": {
      "default": "babel",
      "type": "string",
      "enum": [
        "babel",
        "html",
        "css"
      ]
    }
  }
}
get_call_graphGenerates a call graph for a specific function.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "symbolName": {
      "type": "string"
    },
    "moduleId": {
      "type": "string"
    },
    "scanAllModules": {
      "default": false,
      "type": "boolean"
    }
  },
  "required": [
    "symbolName",
    "moduleId"
  ]
}
get_helpGet detailed usage info and examples for a specific tool.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "tool_name": {
      "type": "string",
      "enum": [
        "deobfuscate",
        "list_modules",
        "get_module",
        "search_modules",
        "analyze_structure",
        "format_code",
        "get_help",
        "get_symbol_source",
        "list_functions",
        "get_call_graph"
      ]
    }
  },
  "required": [
    "tool_name"
  ]
}
get_moduleGets code for specific module ID from cache.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    }
  },
  "required": [
    "id"
  ]
}
get_symbol_sourceExtracts specific function/class source code.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "symbolName": {
      "type": "string"
    },
    "code": {
      "type": "string"
    },
    "filePath": {
      "type": "string"
    },
    "moduleId": {
      "type": "string"
    }
  },
  "required": [
    "symbolName"
  ]
}
list_functionsScans cached modules to list defined functions and classes.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "moduleId": {
      "type": "string"
    },
    "limit": {
      "default": 50,
      "type": "number"
    }
  }
}
list_modulesLists modules from cached bundle.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "excludeVendor": {
      "default": false,
      "type": "boolean"
    }
  }
}
search_modulesSearches text/regex in cached modules.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "query": {
      "type": "string"
    },
    "isRegex": {
      "default": false,
      "type": "boolean"
    },
    "limit": {
      "default": 50,
      "type": "number"
    }
  },
  "required": [
    "query"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Deobfuscate MCP Server questions

How do I install Deobfuscate MCP Server?

Install the selected package version with: npm install --save-exact deobfuscate-mcp-server@1.0.1

What tools does Deobfuscate MCP Server provide?

Deobfuscate MCP Server exposed 10 tools during independent protocol observation, including analyze_structure, deobfuscate, format_code, get_call_graph, get_help, get_module, get_symbol_source, list_functions, and others.

Is Deobfuscate MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.