About AI Encyclopedia
AI Encyclopedia is an MCP server in the RAG category: aI Encyclopedia — Open-source, community-driven AI knowledge base. Repos, articles, videos, tools — scraped, documented, indexed. Add a source, get rich docs. It has been installed 0 times through Conduid.
Install
git clone https://github.com/deeprpatel2/ai-encyclopediaThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about AI Encyclopedia
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- ·Scoped permissionsNot checked yet.
README
AI Encyclopedia
The open-source, community-driven AI knowledge base. GitHub repos, articles, videos, tools — all scraped, documented, indexed, and cross-referenced. Add a source, get rich documentation.
What Is This?
A living knowledge base that turns AI resources into organized, actionable documentation.
You add a source → Scripts scrape & process it → Rich docs are generated → Master index auto-updates
Three types of knowledge:
- Individual Source Docs — Deep-dive on each repo/article/video with use cases and how-to guides
- Topic Guides — Cross-source knowledge grouped by theme (e.g., "MCP Servers", "AI Agents")
- Master Index — Searchable catalog of everything, auto-generated
Browse the Knowledge Base
| Topic | Sources | Start Here |
|---|---|---|
| MCP Servers | 8 sources | Complete MCP Guide |
| AI Coding Assistants | 2 sources | AI Coding Tools Guide |
| Full Index | 9 sources, 26 topics | KNOWLEDGE_INDEX.md |
Featured Sources
| Source | Type | Stars | Doc |
|---|---|---|---|
| MCP Official Servers | GitHub | 79,900+ | Read |
| GitHub MCP Server | GitHub | 27,400+ | Read |
| MCP Python SDK (FastMCP) | GitHub | 21,900+ | Read |
| MCP TypeScript SDK | GitHub | 11,700+ | Read |
| MCP Specification | Spec | Official | Read |
| Build an MCP Server | Tutorial | Official | Read |
| Claude Code Skills | Docs | Official | Read |
| Databricks AI Dev Kit | GitHub | 744 | Read |
Quick Start
Add a New Source
Via CLI:
npm install # first time only
# GitHub repo
node scripts/add-source.js --type github-repo --url "https://github.com/owner/repo" --topics "ai,agents"
# Article or docs
node scripts/add-source.js --type article --url "https://example.com/post" --topics "llm,tutorial" --title "My Article"
# YouTube video
node scripts/add-source.js --type youtube --url "https://youtube.com/watch?v=xxx" --topics "demo,ai"
# Then process and index
node scripts/process-sources.js && node scripts/build-index.js
Or just edit sources.json directly:
{
"id": "my-new-source",
"type": "github-repo",
"url": "https://github.com/owner/repo",
"topics": ["ai", "agents"],
"added": "2026-03-02",
"status": "pending"
}
Discover Related Content
# Find high-quality repos (100+ stars) on a topic
node scripts/discover.js --topic "ai agents"
node scripts/discover.js --topic "mcp servers" --min-stars 500
Project Structure
ai-encyclopedia/
├── README.md # You are here
├── KNOWLEDGE_INDEX.md # Master index (auto-generated)
├── CONTRIBUTING.md # How to contribute
├── LICENSE # MIT License
├── sources.json # Source registry — add content here
├── package.json # Node.js dependencies
│
├── knowledge/ # Generated documentation
│ ├── github-repos/ # GitHub repo deep-dives
│ ├── articles/ # Article summaries & guides
│ ├── youtube/ # Video breakdowns
│ ├── startups/ # Startup profiles
│ └── topics/ # Cross-source topic guides
│
├── scripts/ # Automation
│ ├── process-sources.js # Main processing pipeline
│ ├── add-source.js # CLI to add new sources
│ ├── build-index.js # Rebuild master index
│ └── discover.js # Find related external content
│
├── templates/ # Documentation templates
│ ├── github-repo.md
│ ├── article.md
│ └── youtube.md
│
└── .github/workflows/
└── update-knowledge.yml # Auto-update on push
Supported Source Types
| Type | Use For | Example |
|---|---|---|
github-repo |
Open-source repos, SDKs, tools | MCP Python SDK |
article |
Docs, blog posts, tutorials | MCP Specification |
youtube |
Video tutorials, demos, talks | Conference presentations |
startup |
AI companies, products | Emerging AI tools |
tool |
Developer utilities | CLI tools, extensions |
paper |
Research papers | arXiv papers |
Contributing
We welcome contributions! See CONTRIBUTING.md for full guidelines.
The short version:
- Fork the repo
- Add your source to
sources.jsonor improve docs inknowledge/ - Run
node scripts/build-index.jsto verify - Submit a PR
Quality bar: We only accept verified, high-quality sources — official docs, well-maintained repos (50+ stars), reputable publications. No spam, no marketing fluff.
How It Works
Auto-Processing Pipeline
sources.json (you add a URL)
↓
process-sources.js (scrapes content, generates docs)
↓
knowledge/ (rich markdown documentation)
↓
build-index.js (rebuilds master index)
↓
KNOWLEDGE_INDEX.md (searchable, cross-referenced)
GitHub Action
When you push changes to sources.json, the GitHub Action automatically:
- Processes any
"status": "pending"sources - Rebuilds the knowledge index
- Commits the generated docs
License
MIT License — use it, fork it, build on it.
AI Encyclopedia — Making AI knowledge accessible, organized, and actionable. Open to everyone.
README mirrored from the source repository 5 months ago. The original is authoritative.