Deep Knowledge Mcp Server avatar
Deep Knowledge Mcp Server

Pricing

from $0.01 / 1,000 results

Go to Apify Store
Deep Knowledge Mcp Server

Deep Knowledge Mcp Server

Deep Knowledge MCP Server gives LLMs real-time access to fresh technical docs using Google Search and web crawling. Instead of a basic scraper, it acts as a live knowledge engine for Claude or Cursor, letting developers instantly fetch and understand new libraries, and frameworks to code faster.

Pricing

from $0.01 / 1,000 results

Rating

5.0

(1)

Developer

vikash kumar

vikash kumar

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

2 days ago

Last modified

Share

Give your AI the power to browse, read, and understand technical documentation and code repositories.

This Apify Actor implements the Model Context Protocol (MCP), allowing LLMs (like Claude) to perform deep research on technical topics by leveraging Apify's powerful scraping infrastructure.


๐Ÿš€ Features

  • ๐Ÿ” Search Technical Docs: Finds relevant documentation, libraries, and GitHub repositories using a specialized Google Search setup.
  • ๐Ÿ“– Fetch Documentation: Extracts clean, markdown-formatted content from any documentation URL, perfect for LLM context windows.
  • โšก Fast & Scalable: built on Apify's infrastructure, handling anti-scraping protections automatically.
  • ๐Ÿ’ฐ Pay-per-Event: Simple pricing model based on the tools you use.

๐Ÿ› ๏ธ Tools Provided

1. search_technical_docs

Searches for technical resources.

  • Input: query (e.g., "LangChain python documentation"), max_results (default: 5).
  • Output: A list of titles, URLs, and descriptions.

2. fetch_documentation

Reads a web page and returns its content.


๐Ÿ’ป How to Use

To use this Actor as a tool in Claude Desktop:

  1. Deploy this Actor to your Apify account.
  2. Get your Apify Token from Settings > Integrations.
  3. Configure your claude_desktop_config.json:
{
"mcpServers": {
"deep-knowledge": {
"command": "npx",
"args": [
"-y",
"@apify/mcp-server-runner",
"ACTOR_NAME_OR_ID",
"--token",
"YOUR_APIFY_TOKEN"
]
}
}
}

(Replace ACTOR_NAME_OR_ID with this Actor's name, e.g., eager_cornet/deep-knowledge-mcp-server-v2)

Option 2: Standalone Mode (Demo)

You can run this Actor directly on the Apify Platform to test it without an AI client.

  1. Go to the Input tab.
  2. Uncheck Run as MCP Server.
  3. Enter a Demo Search Query.
  4. Click Start.
  5. View results in the Output tab.

๐Ÿ’ธ Monetization & Pricing

This Actor uses Pay-per-Event pricing. You are charged only when the AI successfully calls a tool.

  • Search: charged per successful search operation.
  • Fetch: charged per successful page fetch.

Check the Pricing tab for exact rates.


๐Ÿ‘จโ€๐Ÿ’ป Development

This server is built with Python using the mcp SDK and apify-client.

Local Development:

# Install dependencies
pip install -r requirements.txt
# Run locally (requires APIFY_TOKEN env var)
python src/main.py