Docs Search Engine — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Docs Search Engine (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A custom Model Context Protocol (MCP) server that acts as a documentation search engine.
This project attempts to build a simple, personal clone of Context7, unlocking the capability to access up-to-date documentation from GitHub repositories and web pages directly within your AI assistant's context.
docs-search-engine/
├── main.py # Entry point: Defines MCP tools and server configuration
├── search.py # Core logic: Zip download, extraction, indexing, and search
├── scrape_web.py # Web scraping functionality (using Jina Reader)
├── test_search.py # Tests for search functionality
├── test_scrape_web.py # Tests for web scraping
└── pyproject.toml # Project dependencies and configuration.zip from GitHub)..md and .mdx) is extracted and indexed in-memory using minsearch.search_docs, scrape_web), and relevant context is returned to the LLM.Add the following configuration to your MCP client settings (e.g., mcp_config.json in Google Antigravity):
{
"mcpServers": {
"docs-search-engine": {
"command": "uv",
"args": [
"run",
"--directory",
"C:/Users/username/path/to/docs-search-engine",
"main.py"
]
}
}
}Note: Replace C:/Users/username/path/to/docs-search-engine with the actual absolute path to your project directory.
Once the MCP server is connected to your AI assistant (e.g., VSCode, Claude, Cursor, Antigravity), you can use natural language to interact with it.
1. Search Documentation
"Search for 'context' in the FastMCP docs.""Find information about 'indexing' in the minsearch docs (https://github.com/alexeygrigorev/minsearch)."2. Scrape Web Pages
"Scrape the content of https://example.com/blog/article and summarize it."3. Count Word Occurrences
"Count how many times the word 'LLM' appears on https://example.com/ai-trends."uv installed (recommended) cd docs-search-engine uv syncTo run the server manually for debugging:
uv run main.pyRun the comprehensive test suite to ensure everything is working correctly:
# Run all tests
uv run pytest -v
# Run specific test files
uv run pytest test_search.py -v
uv run pytest test_scrape_web.py -v
# Run only integration tests
uv run pytest -m integration -v~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.