agentic-knowledge
An MCP server that guides AI assistants to navigate documentation using their built-in tools (grep, file reading) instead of traditional RAG.
README
🧠 Agentic Knowledge
Search any documentation as if you had written it yourself
An MCP server that guides AI assistants to navigate documentation using their built-in tools (grep, file reading) instead of traditional RAG. Leverages ever growing capabilities of large language models, better tool-calling and interpretation and agentic search patterns for precise, intelligent documentation discovery.
🎯 What Is This For?
Give your AI assistant access to any documentation—yours or third-party—so it can find answers as naturally as you would. No embeddings, no vector databases, no complex infrastructure.
Perfect for:
- 📚 Project documentation - Your team's internal docs, APIs, guides
- 🔧 Framework references - React, TypeScript, MCP SDK, any library
- 🏢 Enterprise knowledge - Company wikis, architecture docs, runbooks
- 🌐 Open source projects - Clone any repo's docs for instant access
🚀 Quick Start
1. Configure an MCP Client
Add to your coding agent config something along the lines of
{
"mcpServers": {
"agentic-knowledge": {
"command": "npx",
"args": ["-y", "@codemcp/knowledge@latest"]
}
}
}
2. Set Up Your First Docset
Option A: Use the CLI (Recommended)
# For a Git repository
npx @codemcp/knowledge create \
--preset git-repo \
--id react-docs \
--name "React Documentation" \
--url https://github.com/facebook/react.git
# Initialize (downloads the docs)
npx @codemcp/knowledge init react-docs
# The MCP server starts automatically when Claude Desktop launches
Option B: Manual Configuration
Create .knowledge/config.yaml:
version: "1.0"
docsets:
- id: my-docs
name: My Project Documentation
sources:
- type: local_folder
paths: ["./docs"]
3. Use It
Your AI assistant now has access to search_docs and list_docsets tools. Ask questions naturally:
"How do I implement a cleanup function in React useEffect?"
"Show me the authentication setup in our docs"
"Find examples of rate limiting in the API docs"
The assistant will receive intelligent navigation instructions and use grep/file reading to find the exact information.
📖 Documentation
- User Guide - Detailed CLI commands, lifecycle, configuration
- Examples - Configuration examples and integration guides
- Testing Guide - Comprehensive testing documentation
💡 How and Why It Works
The Paradigm Shift
Traditional RAG (Retrieval-Augmented Generation) was built for the context-poor era when models had 8K token limits. It:
- Chunks documents (losing relationships)
- Computes embeddings (missing precise terminology)
- Retrieves fragments (losing context)
- Requires massive infrastructure (vector DBs, rerankers)
Agentic Knowledge leverages modern AI capabilities:
- ✅ 200K+ token context windows - Can read entire documentation sets
- ✅ Powerful filesystem tools - grep, ripgrep, file reading built-in
- ✅ Intelligent navigation - Provides search strategies, not fragments
- ✅ Zero infrastructure - Just a config file and your docs
From Retrieval to Navigation
Traditional RAG says: "Here are 50 fragments that mention your keywords"
Agentic Knowledge says:
"Search for 'useState' in ./docs/react-18.2/hooks/. If that doesn't help, try 'state management' in ./docs/patterns/. Follow any 'See also' references you find."
The difference? Guidance over fragments. Investigation over retrieval.
How It Actually Works
- Configure docsets - Point to local folders or Git repositories
- Initialize - Downloads/symlinks documentation to
.knowledge/docsets/ - MCP server - Exposes
search_docsandlist_docsetstools - AI searches - Gets navigation instructions, uses grep/file tools
- Finds answers - Reads complete documents with full context
Performance:
- Setup: Seconds (vs hours for RAG indexing)
- Response: <10ms (vs 300-2000ms for RAG)
- Infrastructure: None (vs Elasticsearch + Vector DB)
- Accuracy: Complete context (vs fragment-based)
Inspired By
This approach is inspired by The RAG Obituary by Nicolas Bustamante and how Claude Code revolutionized code analysis by ditching RAG for direct filesystem exploration.
🚀 Local Development
# Install dependencies
pnpm install
# Start development mode
pnpm dev
# Run tests
pnpm test
# Build all packages
pnpm build
See User Guide for installation from source.
🤝 Contributing
This project follows a structured development workflow. See our development documentation for contribution guidelines.
📄 License
Distributed under the MIT License. See LICENSE file for details.
<div align="center"> <p><strong>🎯 Moving beyond RAG into the agentic era of knowledge systems</strong></p> <p><em>Inspired by <a href="https://www.nicolasbustamante.com/p/the-rag-obituary-killed-by-agents">The RAG Obituary</a> by Nicolas Bustamante</em></p> </div>
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。