Knowledge MCP
Explore private repository structure and use GitHub MCP tools.
Search, read, list, and semantically search files in Google Drive.
Inspect Railway services, deployments, and logs.
Search messages, read channels, list channels, and find files in Slack (read-only).
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., "@Knowledge MCPsearch my Google Drive for the Q3 marketing report"
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.
Knowledge MCP
A self-hostable MCP server that exposes your Google Drive, Slack, GitHub and Railway to any MCP client (Claude Desktop, Claude web connectors, IDEs, …) — with semantic search, per-user permissions, and optional OAuth. You bring the credentials and a small config; everything about what to look at is yours.
Tools
Tool | What it does | Needs |
| Keyword/filename search over indexed Drive assets | Drive creds |
| Read full file contents by File ID (batchable) | Drive creds |
| Exhaustive listing of a folder | Drive creds |
| Vector (RAG) search over Drive content | Qdrant + OpenAI |
| Read Slack (read-only) | Slack token |
| Explore private repo structure / proxy GitHub MCP | GitHub token |
| Inspect Railway infra | Railway token |
| Health check | — |
Every tool group is gated by its credentials: a group you don't configure simply isn't offered to the client, so the model never tries a tool that can't work.
Related MCP server: AI Personal Hub
How configuration works
Two layers, kept separate on purpose:
Secrets → environment variables (
.envlocally, host env vars in prod). See.env.example.What to look at →
mcp.config.json(Drive folder IDs, Qdrant collection, Supabase schema, domains, branding). Seemcp.config.example.json.
Config resolution order: MCP_CONFIG_JSON (inline env) → MCP_CONFIG_PATH (file) →
./mcp.config.json → built-in neutral defaults.
Config key | Meaning |
| Organization identifier carried in the auth context |
| Server name + the routing guide the client sees on connect |
|
|
| Folder names to exclude from the index (your PII/HR/contracts) |
| Vector collection name (env |
| Supabase schema holding the server's tables (default |
| Your own domains |
| Login allowlist (env overrides available) |
Quick start
# 1) Install
npm install
# 2) Configure
cp .env.example .env # fill in credentials
cp mcp.config.example.json mcp.config.json # set your Drive folder IDs, domains, etc.
# 3) Prepare Supabase
# Run sql/setup.sql in your Supabase project, then provision an admin key:
# insert into public.mcp_keys (key_hash, org_id, role, email)
# values (encode(digest('YOUR_RAW_KEY','sha256'),'hex'), 'acme', 'admin', 'you@acme.com');
# 4) Index your Drive (for semantic_search_drive)
npm run reindex
# 5) Run
npm run dev # local (stdio or http per MCP_TRANSPORT)
# or build + start
npm run build && npm startPoint your MCP client at https://<your-host>/mcp with Authorization: Bearer <your key>.
Deploy
The repo ships a Dockerfile and railway.toml. Any container host works (Railway, Fly, a VPS).
The host injects PORT; the server listens on it. Set your env vars (and either MCP_CONFIG_JSON
or commit-free mcp.config.json) in the host, then deploy.
⚠️ In-memory sessions assume a single replica. For multiple replicas you'd need sticky routing and a shared session store.
OAuth (optional)
Set the MCP_OAUTH_* / OAUTH_* env vars to turn on a built-in OAuth 2.1 Authorization Server that
bridges login to Google Workspace and issues its own tokens — this is what lets Claude's custom web
connectors sign users in. Without it, the server uses Bearer API keys only. See OAUTH_SETUP.md.
Security notes
Never commit
google-service-account.jsonor.env(both are gitignored).API keys are stored hashed (
validate_mcp_key), support revoke/expiry, and are rate-limited.Per-user roles and resource scopes come from
app_users; unregistered users areviewer.The server is fail-open for reads and never mutates your source systems (Slack/GitHub/Railway access is read-only; Drive is read + index only).
License
MIT © chanthr
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 Servers
- Flicense-qualityDmaintenanceEnables AI applications to access and contextualize organizational knowledge sources including GitHub repositories and internal documentation through standardized MCP protocol integration. Features OAuth 2.1 authentication, vector-based semantic search, and optimized context chunking for enterprise development workflows.
- Flicense-qualityDmaintenanceUnified personal assistant MCP server that connects local files, GitHub repositories, YouTube playlists, Gmail, and Steam data. Enables querying and managing personal data across multiple platforms through natural language via LM Studio integration.1
- AlicenseAqualityDmaintenanceA universal, local-first MCP hub that indexes personal files (documents, code, etc.) and provides private semantic search via hybrid dense+BM25 retrieval, enabling agents like Claude Desktop to query your data without sending it to the cloud.176MIT
- Flicense-qualityBmaintenanceMCP server for semantic search over Google Drive documents, enabling AI tools to search, list, and retrieve document content.
Related MCP Connectors
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
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/chanthr/internal-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server