← All WebMCP sites

krawl.sh

AI & Agentshttps://krawl.sh/listed as of 2026-06-02
Krawl is a deep research agent API that produces 50+ source reports in 90 seconds with full citations, searching the web, X/Twitter, GitHub, academic papers, and crypto/DeFi in parallel. Drop it into Claude Code, OpenClaw, Hermes, or any runtime via API, MCP, or skill.md.
See Ora's auditWe loaded this site in a real browser and scored its tools.

Tools

researchanswerimperative
Run an autonomous deep-research agent over a topic and return a comprehensive markdown report with 50+ verified sources and inline citations. Searches the web, X/Twitter, GitHub, academic papers, and crypto/DeFi data in parallel, then synthesizes a cited answer.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "The research question or topic to investigate.",
      "minLength": 3
    },
    "mode": {
      "type": "string",
      "enum": [
        "deep",
        "quick",
        "crypto"
      ],
      "default": "deep",
      "description": "deep = exhaustive multi-source search; quick = fast shallow answer; crypto = on-chain/DeFi-specialized research."
    }
  },
  "required": [
    "query"
  ]
}
quick_searchanswerimperative
Search a single source and return raw, structured results without synthesis. Faster and cheaper than `research`; use when you want links/snippets from one provider rather than a written report.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "The search query.",
      "minLength": 2
    },
    "source": {
      "type": "string",
      "enum": [
        "exa",
        "x",
        "github",
        "crypto",
        "web",
        "academic"
      ],
      "default": "exa",
      "description": "Which source to search (exa=general web, x=Twitter, etc.)."
    },
    "num_results": {
      "type": "integer",
      "minimum": 1,
      "maximum": 30,
      "default": 8,
      "description": "Max results to return."
    }
  },
  "required": [
    "query"
  ]
}
ask_krawlanswerimperative
Ask a natural-language question about Krawl's research capabilities and get a routed answer pointing to the right tool or endpoint.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "A natural-language question about what you want to research or how to use Krawl.",
      "minLength": 2
    }
  },
  "required": [
    "query"
  ]
}
Listings are sourced from public community registries and shown as reported.