MCP-PersonalSearch
Allows indexing, searching, and retrieving documentation from GitLab-hosted docs-as-code repositories.
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., "@MCP-PersonalSearchsearch the eng docs for how to set up a new GitLab CI runner"
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.
MCP-PersonalSearch
An MCP server designed to give the model access to the same data the operator has available during their normal interactive sessions.
Currently implemented: Phase 1 of the project PRD — the local documentation pipeline (raw store → markdown extraction → chunking → FTS5 index → CLI) for GitLab-hosted docs-as-code repositories. The MCP server itself (Streamable HTTP, search_docs/get_section/etc.) is Phase 2 and not yet built.
Setup
python -m venv .venv
.venv/Scripts/activate # or `source .venv/bin/activate` on Linux/macOS
pip install -e ".[dev]"Copy config.example.toml to config.toml and point [[sources]] at your repo(s):
[[sources]]
id = "eng-docs"
type = "gitlab_repo"
repo_url = "https://gitlab.example.com/team/docs.git"
branch = "main"
globs = ["docs/**/*.md", "README.md"]Related MCP server: Gemini Docs MCP Server
Usage
docsrag ingest --source eng-docs # clone/fetch + index; safe to re-run, skips unchanged files
docsrag search "your question here" # lexical (BM25) search over the indexed corpus
docsrag reindex # rebuild sections/chunks/FTS from the raw store, fully offline
docsrag status # per-source document counts and last run
docsrag eval --set eval/questions.json # recall@k / MRR against a labelled question set (PRD §7.2)corpus.db (the indexed documentation) and instance.db (query log, job history) are written under data/ by default and are gitignored — see PRD §12 on why the corpus must never be shared, exported, or synced.
eval/questions.json is also gitignored, for the same reason: real questions are grounded in whatever you actually ingested and can embed internal content. Copy eval/questions.example.json to eval/questions.json and fill it in with {"query": ..., "section_id": ...} pairs from your own corpus (section_id values come from docsrag search output).
Tests
pytestThis 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
- AlicenseNot gradedqualityFmaintenanceEnables AI assistants to enhance their responses with relevant documentation through a semantic vector search, offering tools for managing and processing documentation efficiently.2162MIT
- FlicenseNot gradedqualityDmaintenanceProvides curated documentation access via the Gemini API, enabling users to query and interact with technical docs effectively by overcoming context and search limitations.14
- AlicenseAqualityDmaintenanceProvides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context.7211MIT
- FlicenseAqualityNot gradedmaintenanceExposes an internal engineering knowledge base to AI assistants, allowing users to search and retrieve standards, runbooks, and architecture decisions. It supports RAG-enhanced search, document scraping, and specialized prompts for incident investigation and code reviews.5
Related MCP Connectors
Provide your AI coding tools with token-efficient access to up-to-date technical documentation for…
Token-efficient search for coding agents over public and private documentation.
Page-cited retrieval for embedded docs, datasheets, MISRA, CMSIS, and RTOS references.
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/weatherills/MCP-PersonalSearch'
If you have feedback or need assistance with the MCP directory API, please join our Discord server