Deep Knowledge Mcp Server
Pricing
from $0.01 / 1,000 results
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
Actor stats
0
Bookmarked
1
Total users
0
Monthly active users
2 days ago
Last modified
Categories
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.
- Input:
url(e.g., "https://python.langchain.com/docs/get_started/introduction"). - Output: The page content converted to Markdown.
๐ป How to Use
Option 1: limit with Claude Desktop (Recommended)
To use this Actor as a tool in Claude Desktop:
- Deploy this Actor to your Apify account.
- Get your Apify Token from Settings > Integrations.
- 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.
- Go to the Input tab.
- Uncheck Run as MCP Server.
- Enter a Demo Search Query.
- Click Start.
- 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 dependenciespip install -r requirements.txt# Run locally (requires APIFY_TOKEN env var)python src/main.py