disasm.dev MCP server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@disasm.dev MCP serversolve a DataDome challenge for https://example.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
disasm.dev MCP server
A Model Context Protocol server for disasm.dev. It lets an AI assistant (Claude, Cursor, and any MCP client) generate valid DataDome and Incapsula clearance tokens, without a headless browser.
It is built for development and prototyping: solve a challenge inline and have your assistant wire the result into your scraper. Production traffic should call the HTTP API directly.
Tools
Tool | What it does |
| Solve a DataDome |
| Solve an Incapsula (Imperva) |
| Your account profile. |
| Subscription balance and PAYG wallet. |
| Recent solve usage. |
| Your API keys (metadata only). |
Every tool uses one disasm.dev API key. Create one in the dashboard.
Related MCP server: Airbrowser
Install (local, stdio)
Add it to your MCP client. For Claude Desktop, edit claude_desktop_config.json:
{
"mcpServers": {
"disasm": {
"command": "npx",
"args": ["-y", "disasm-mcp"],
"env": { "DISASM_API_KEY": "your_api_key" }
}
}
}The same command / args / env shape works for Cursor and other clients.
Use (remote, HTTP)
The server also runs as a remote Streamable HTTP endpoint. Point your client at the URL and pass your key as a Bearer token:
{
"mcpServers": {
"disasm": {
"url": "https://mcp.disasm.dev/mcp",
"headers": { "Authorization": "Bearer your_api_key" }
}
}
}The hosted endpoint is stateless: each request carries its own key and no key is stored server-side.
Run it yourself
npm install
npm run build
# stdio (what npx runs)
DISASM_API_KEY=your_api_key npm start
# remote HTTP on :8787 (override with PORT)
npm run start:httpConfiguration
Variable | Default | Purpose |
| (required, stdio) | Your disasm.dev API key. |
|
| HTTP server port. |
|
| DataDome solve host. |
|
| Incapsula solve host. |
|
| Management API host. |
Notes
Treat your API key like a password. Anyone with it can spend your balance.
License
MIT. See LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/disasm-dev/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server