← trickest.com

INDIVIDUAL MCP TOOL

search_docs

Full-text search across everything published on trickest.com: product and developer documentation, the copy-and-run workflow library, nestable modules, security tool pages, the glossary and the blog.

trickest.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://trickest.com/api/mcp

No auth detected

Connect to this endpoint to inspect the live schema for search_docs and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

trickest.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.trickest-docs]
url = "https://trickest.com/api/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "trickest-docs": {
      "type": "http",
      "url": "https://trickest.com/api/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: trickest-docs
Remote MCP URL: https://trickest.com/api/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "trickest-docs": {
      "url": "https://trickest.com/api/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "trickest-docs": {
      "type": "http",
      "url": "https://trickest.com/api/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "trickest-docs",
  "transport": "streamable-http",
  "url": "https://trickest.com/api/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • get_doc — Return the full markdown source of one trickest.com documentation page, frontmatter included, so you can quote it exactly.
  • list_workflows — List the copy-and-run workflows in the public Trickest library — the catalog at trickest.com/library.
  • get_workflow — Return everything trickest.com publishes about one library workflow: its description, category, the ordered pipeline steps, a summary of the DAG (every node with its label and type, plus the edge count), the security tools it runs, and the full markdown page body.
  • list_tools — List the documented security tools that run as nodes inside a Trickest workflow (nuclei, httpx, subfinder, sqlmap and friends), with slug, absolute URL, category and one-line tagline.
  • get_tool — Return the documented detail of one security tool as it runs on Trickest: what it does, when to use it, its key inputs with the real CLI flags, its outputs, a runnable example command and the tool's upstream project.
  • define_term — Return Trickest's definition of a security term from the public glossary — the short citable definition, the full entry, its category, its aliases and related terms, with the canonical URL.
  • how_to_call_the_api — Return the authentication and endpoint quickstart for driving Trickest from code: where the API token comes from, the REST base URL and header, the hosted product MCP endpoint with a ready client config, the SDK and CLI entry points, and links to the OpenAPI document.