Unanswered Questions MCP Server
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., "@Unanswered Questions MCP Servershow me the most common unanswered question patterns"
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.
Unanswered Questions MCP Server
MCP server that tracks questions a RAG chatbot can't answer, clusters them by semantic similarity, and suggests what documentation to add.
Built to plug into a multi-tenant RAG chatbot in production. When the chatbot gives a low-confidence answer, it logs the question here. Run pattern analysis periodically to find out what docs are missing.
Article: Build an MCP Server That Finds Your RAG Chatbot's Blind Spots
How It Works
User question → RAG chatbot → low confidence?
│
log_unanswered_question
│
SQLite + embedding
│
get_question_patterns (weekly)
│
clusters by similarity
│
suggest_documents → write docs → mark_resolved4 tools exposed over MCP:
Tool | What it does |
| Store a question + its embedding |
| Cluster unresolved questions, return topics |
| AI-generated doc outline for a topic |
| Close the loop after adding documentation |
Related MCP server: claude-rag-mcp
Quick Start
uv sync
cp .env.example .env # add your OPENAI_API_KEY
python test_server.py # Run the test suite (needs API key)
python server.py # Start the MCP serverClaude Desktop config
{
"mcpServers": {
"unanswered-questions": {
"command": "python",
"args": ["/path/to/unanswered-questions-mcp/server.py"]
}
}
}Why It's Built This Way
SQLite over a vector database — Batch analysis, not real-time retrieval. Zero-config and handles 10K+ questions fine.
Greedy cosine-similarity clustering — Embeddings via text-embedding-3-small, cosine similarity matrix, then greedy
assignment above a configurable threshold.
Multi-tenant from day one — Every operation takes an optional tenant_id. Matches the production RAG chatbot it plugs into.
Limitations
Batch, not real-time — Pattern analysis is meant to run periodically, not as a streaming pipeline.
Greedy clustering is order-dependent — Results can vary slightly across runs. Fine for broad patterns, not precise categorization.
No auth — Relies on the MCP client handling access. Add authentication if exposing over HTTP.
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-qualityDmaintenanceRAG-enabled MCP server that uses Google Gemini for embeddings and Supabase for vector storage, enabling semantic search and document similarity matching through natural language queries.
- Alicense-qualityCmaintenanceMCP server providing RAG context and failure capture for Claude Code, enabling semantic search across project knowledge and storing/analyzing failures.1MIT
- Flicense-qualityDmaintenanceAn MCP server for team documentation and knowledge bases, enabling semantic search over documentation files using local embeddings.
- Flicense-qualityBmaintenanceMCP server for a modular RAG system that enables natural language question answering over enterprise documents with intent-aware routing, adaptive retrieval, and citation-backed responses.
Related MCP Connectors
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Cloud-hosted MCP server for durable AI memory
Official Microsoft MCP Server to query Microsoft Entra data using natural language
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/hamurda/rag-insights-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server