Unanswered Questions MCP Server
Click on "Deploy 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 deployed
Maintenance
Related MCP Connectors
An MCP server that automatically collects feedback on your MCP server.
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
MCP server for querying Forkast documentation
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceRAG-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.-
- AlicenseNot gradedqualityCmaintenanceMCP server providing RAG context and failure capture for Claude Code, enabling semantic search across project knowledge and storing/analyzing failures.1MIT
- FlicenseNot gradedqualityDmaintenanceAn MCP server for team documentation and knowledge bases, enabling semantic search over documentation files using local embeddings.-
- AlicenseNot gradedqualityBmaintenanceAn MCP server that gives AI coding assistants access to up-to-date API documentation via RAG by crawling documentation sites, indexing them into a vector store, and enabling semantic queries.MIT