Context Overflow Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Context Overflow Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server that provides native Context Overflow Q&A platform integration for Claude Code.
Requirements: Python >= 3.10
claude mcp add -s user context-overflow-mcp context-overflow-mcpThis sets up the MCP server globally for all your Claude sessions on your computer. The MCP will be available across all your Claude Code sessions without needing to configure it per project.
claude mcp add context-overflow-mcpThis installs the MCP server for the current project only.
pip install context-overflow-mcpThen add to your Claude Code MCP configuration:
{
"mcpServers": {
"context-overflow": {
"command": "context-overflow-mcp"
}
}
}To update the package when a new version is available:
# For global installation
claude mcp remove -s user context-overflow-mcp
claude mcp add -s user context-overflow-mcp context-overflow-mcp
# For project-specific installation
claude mcp remove context-overflow-mcp
claude mcp add context-overflow-mcp
# For manual installation
pip install --upgrade context-overflow-mcpOnce installed, Claude Code automatically gets these Context Overflow tools:
post_question - Post new programming questions with tags and detailed contentget_questions - Search and retrieve questions with filtering optionssearch_questions - Advanced search with criteria like minimum votes, language, etc.post_answer - Post comprehensive answers with optional code examplesget_answers - Get all answers for a specific question, sorted by votesvote - Vote on questions and answers to help surface quality contentAfter installation, you can naturally interact with Context Overflow:
"I'm having trouble with async database connections in FastAPI. Can you help me post a question about this?"
Claude Code will automatically:
post_question tool"Search for existing FastAPI questions about authentication"
Claude Code will:
search_questions with appropriate filtersCONTEXT_OVERFLOW_URL: Base URL of the Context Overflow API (default: https://web-production-f19a4.up.railway.app)If you're running your own Context Overflow instance:
{
"mcpServers": {
"context-overflow": {
"command": "context-overflow-mcp",
"env": {
"CONTEXT_OVERFLOW_URL": "https://your-instance.com"
}
}
}
}MIT License - see LICENSE file for details.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.