Enterprise Knowledge MCP Server
Enables indexing and semantic search of Confluence pages via REST API v2, with incremental sync using CQL and API token authentication, supporting citation-backed RAG retrieval.
Integrates with Google Drive to index documents, including exporting Google Docs/Sheets to text before extraction, with service account or OAuth authentication.
Provides a connector to index Notion pages and databases through the Notion API, using integration token auth, enabling semantic search and RAG over Notion content.
Connects to Slack to index messages and files via conversations.history, with bot token auth and channel-membership-based access control for secure retrieval.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Enterprise Knowledge MCP ServerSearch our knowledge base for VPN setup instructions and include citations."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
About Intuz
This library is maintained by Intuz, an AI-first software development company specializing in Agentic AI Development and Custom AI Development.
INTUZ is presenting an enterprise knowledge retrieval and RAG MCP server.
Enterprise Knowledge MCP Server
An MCP server that exposes semantic search and RAG over enterprise documents as standardized tools for any MCP-compatible client.
Related MCP server: LTM MCP Server
Use Cases
1. AI-Powered Knowledge Access for Non-Technical Users
Problem: Business stakeholders cannot query or search internal document repositories without developer help.
Solution: An MCP server that makes enterprise knowledge available as clean tools — any MCP client (Claude Desktop, etc.) can retrieve and cite information from PDFs, Word documents, and spreadsheets.
Outcome: Instant, citation-backed answers from company knowledge without touching source systems directly.
2. Automated Document Retrieval and RAG
Problem: LLMs lack access to internal, proprietary knowledge and hallucinate when asked about it.
Solution: The server retrieves the most relevant document chunks and assembles a citation-tagged context block ready to drop into any LLM prompt.
Outcome: Accurate, grounded responses with precise citations pointing to pages, headings, or spreadsheet sheets.
3. Scalable Multi-Source Knowledge Indexing
Problem: Enterprise knowledge is scattered across SharePoint, Confluence, Notion, Google Drive, Slack, and local file systems.
Solution: A modular connector architecture — each new data source is one class implementing two methods; nothing downstream changes.
Outcome: A single unified knowledge index across all enterprise sources, searchable via natural language.
Description
The Enterprise Knowledge MCP Server bridges the gap between enterprise document repositories and AI assistants. It uses FastMCP to expose ingestion, semantic search, and RAG context assembly as standardized tools, so any MCP-compatible client gets read-only, citation-backed access without touching source systems.
This application enables users to:
Index PDF, DOCX, and XLSX files locally — no document text leaves the machine.
Perform semantic search with metadata filters (source type, department, author).
Retrieve citation-tagged RAG context blocks ready for any LLM prompt.
Extend to new data sources (SharePoint, Confluence, Notion, Google Drive, Slack) by writing one connector class.
Built with FastMCP, ChromaDB, and sentence-transformers, the system is fully local, modular, and production-leaning.
Features
Feature | Description |
Semantic Search | Cosine-similarity vector search over all indexed chunks |
RAG Context Assembly | Returns citation-tagged context blocks ( |
Local Embeddings | sentence-transformers — no external embedding API calls, no data leaves the machine |
Schema-Aware Extraction | PDF pages, DOCX headings and tables, XLSX sheets each become citable sections |
Metadata Filtering | Filter by |
Modular Connectors | One class implements |
Safe Read-Only Access | MCP tools never write to source systems |
Configurable | Full environment-variable configuration via |
Tested | Includes basic test structure |
Architecture
[MCP Client — Claude Desktop, etc.]
|
(stdio / MCP protocol)
|
[server.py — FastMCP tools]
|
[rag/retriever.py — KnowledgeService]
|
┌────┴────┐
| |
[ingestion] [storage/vector_store.py — ChromaDB]
|
├── extractor.py (PDF pages / DOCX headings+tables / XLSX sheets)
├── chunker.py (sentence-packed overlapping chunks)
└── embedder.py (sentence-transformers, local)
|
[connectors/]
└── local_files.py (PDF / DOCX / XLSX — implemented)
└── ... (SharePoint / Confluence / Notion / Drive / Slack — roadmap)Project Structure
enterprise-knowledge-mcp/
├── data/
│ ├── raw/ # drop source files here
│ └── chroma/ # Chroma persistent index (auto-created)
├── src/
│ ├── server.py # MCP server entry point (FastMCP tools)
│ ├── config.py # centralised env-var configuration
│ ├── connectors/
│ │ ├── base.py # BaseConnector ABC + SourceDocument dataclass
│ │ └── local_files.py # local PDF/DOCX/XLSX connector (implemented)
│ ├── ingestion/
│ │ ├── extractor.py # text extraction per mime type
│ │ ├── chunker.py # sentence-boundary chunker with overlap
│ │ └── embedder.py # sentence-transformers wrapper
│ ├── rag/
│ │ └── retriever.py # KnowledgeService: ingest + search + RAG context
│ └── storage/
│ └── vector_store.py # Chroma vector store wrapper
├── Screenshots/
│ └── logo.jpg
├── .env.example # copy to .env and configure
├── .gitignore
├── requirements.txt
└── README.mdGetting Started
Prerequisites
Python 3.10+
pip
Quick Setup (Recommended)
git clone <repository-url>
cd enterprise-knowledge-mcp
# Install dependencies
pip install -r requirements.txt
# Configure environment
cp .env.example .env
# Edit .env if you need non-default paths or a different embedding modelManual Setup
# Create and activate a virtual environment
python3 -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Configure environment
cp .env.example .env
# Edit .env as needed (all values have sensible defaults)Running the Server
python src/server.pyThe server runs over stdio — the standard transport for local MCP clients.
Claude Desktop Configuration
Add this block to claude_desktop_config.json:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"enterprise-knowledge": {
"command": "python",
"args": ["/absolute/path/to/enterprise-knowledge-mcp/src/server.py"]
}
}
}Replace /absolute/path/to/ with the real path on your machine.
Configuration
Variable | Required | Default | Description |
| No |
| Directory the local connector scans for source files |
| No |
| Directory where the Chroma persistent index is stored |
| No |
| Chroma collection name |
| No |
| Max chunk size in characters |
| No |
| Overlap in characters carried between chunks |
| No |
| sentence-transformers model — runs locally, no API key needed |
| No |
| Default number of results returned by search and RAG tools |
Usage
Drop PDF, DOCX, or XLSX files into
data/raw/.Connect an MCP client (e.g. Claude Desktop) to the server.
Use the
ingest_local_directorytool to index documents.Ask natural language questions — the client will call
search_knowledgeorget_rag_contextautomatically.
Programmatic ingest example:
import sys; sys.path.insert(0, "src")
from connectors.local_files import LocalFileConnector
from rag.retriever import KnowledgeService
svc = KnowledgeService()
result = svc.ingest_connector(LocalFileConnector(root_dir="data/raw"))
print(result)
# {"documents_indexed": N, "chunks_indexed": M, "errors": [...]}MCP Tools
Tool | Arguments | Description |
|
| Scan and index all PDF/DOCX/XLSX files from a directory. Defaults to |
|
| Semantic search with optional metadata filters. Returns ranked chunks with score, title, section, and path. |
|
| Retrieved chunks with inline citation markers |
| — | All documents currently in the index with their chunk counts. |
| — | Total indexed chunk count. |
Dependencies
Package | Purpose |
| FastMCP server framework (v1 decorator API) |
| Persistent vector store with cosine similarity search |
| Local embedding model — no external API calls |
| PDF text extraction (page-by-page) |
| DOCX text and table extraction |
| XLSX sheet extraction |
| Data validation and settings |
Testing
# From the repo root with venv activated
pytest -vConnector Roadmap
Priority | Source | Notes |
Done | Local files (PDF, DOCX, XLSX) |
|
2 | SharePoint | Microsoft Graph API, delta queries, app-only client credentials auth |
3 | Confluence | REST API v2, CQL incremental sync, API token auth |
4 | Notion |
|
5 | Google Drive | Drive API v3, service account or OAuth, export Docs/Sheets as text |
6 | Slack |
|
Copyright (c) 2026 Intuz Solutions Pvt Ltd. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Query your org's data in natural language — read-only MCP access to SQL, NoSQL, files & warehouses.
Team docs served to AI agents over MCP - search, Markdown reads, version pinning, read audit.
Make your knowledge agent-ready. One MCP endpoint, 5 connectors, 3 search modes.
Read-only MCP over an agentic SLR workspace with per-claim citation verification
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceProvides hybrid retrieval (dense + BM25 + RRF) with collection-based isolation and document ingestion for private knowledge access via MCP.MIT
- AlicenseNot gradedqualityCmaintenanceEnables MCP-capable AI to perform read-only semantic search over a local document corpus stored in Postgres with pgvector, using mxbai-embed-large embeddings and optional reranking for confidence-gated results.MIT
- AlicenseNot gradedqualityCmaintenanceEnables document ingestion, semantic search, and retrieval-augmented generation via MCP tools and REST API, using vector embeddings and intelligent chunking.MIT
- FlicenseNot gradedqualityCmaintenanceProvides read-only MCP tools for hybrid semantic and keyword search over locally indexed PDF documentation, with citations and context retrieval for LLM agents.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IntuzSmitP/enterprise_knowledge_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server