Skip to main content
Glama
ygfest

Stack Over MCP

by ygfest

Stack Over MCP

An MCP (Model Context Protocol) server that provides LLMs with tools to search Stack Overflow for programming solutions, helping ground responses in real-world code examples and reduce hallucinations.

Features

  • Smart Search: Search Stack Overflow questions with customizable filters

  • Detailed Question Analysis: Get complete question details with all answers

  • Tag-Based Discovery: Find popular solutions by programming language/framework

  • Real-time Results: Direct access to Stack Overflow's API

  • Rich Metadata: Scores, view counts, acceptance status, and more

Related MCP server: Exa MCP Server

Installation

  1. Clone and setup the project:

    cd stack-over-mcp
    python -m venv venv
    # On Windows:
    venv\Scripts\activate
    # On macOS/Linux:
    source venv/bin/activate
  2. Install dependencies:

    pip install -r requirements.txt

Usage

Running the MCP Server

python main.py

The server will start and provide three main tools:

1. search_stackoverflow

Search Stack Overflow questions with flexible filtering:

# Basic search
search_stackoverflow("python list comprehension")

# Advanced search with filters
search_stackoverflow(
    query="react hooks error",
    limit=5,
    sort="votes",
    tags=["javascript", "react"],
    accepted_only=True
)

Parameters:

  • query: Search terms

  • limit: Max results (1-100, default: 10)

  • sort: "relevance", "activity", "votes", or "creation"

  • tags: Filter by programming tags

  • accepted_only: Only questions with accepted answers

2. get_question_details

Get complete information about a specific question:

# Get question with all answers
get_question_details(question_id=12345678)

# Get just question metadata
get_question_details(question_id=12345678, include_answers=False)

3. search_by_tags

Find popular questions by technology tags:

# Find top Python questions
search_by_tags(tags=["python"], sort="votes", min_score=10)

# Find recent React + TypeScript questions
search_by_tags(
    tags=["javascript", "react", "typescript"],
    sort="activity",
    limit=5
)

Integration with MCP Clients

This server is designed to work with MCP-compatible clients like Claude Desktop. Add it to your MCP configuration:

{
  "mcpServers": {
    "stack-over-mcp": {
      "command": "python",
      "args": ["path/to/stack-over-mcp/main.py"]
    }
  }
}

Use Cases

  • Debugging: Find solutions to specific error messages

  • Learning: Discover best practices and common patterns

  • Code Review: Validate approaches against community solutions

  • Architecture: Find proven solutions for complex problems

  • API Usage: Get real examples of library/framework usage

API Rate Limits

The Stack Overflow API has rate limits:

  • Unauthenticated: 300 requests per day per IP

  • Authenticated: 10,000 requests per day (requires API key)

For production use, consider implementing API key authentication in stack_api.py.

Project Structure

stack-over-mcp/
├── main.py          # FastMCP server with tool definitions
├── stack_api.py     # Stack Overflow API client
├── requirements.txt # Python dependencies
└── README.md        # This file

Contributing

Feel free to enhance the server with additional features:

  • API key authentication for higher rate limits

  • Caching for frequently requested questions

  • Advanced filtering options

  • Support for other Stack Exchange sites

License

This project is open source and available under the MIT License.

F
license - not found
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    -
    quality
    D
    maintenance
    Connects AI assistants to Exa AI's search capabilities, enabling web search, company research, URL crawling, LinkedIn search, and specialized code search across GitHub repos, documentation, and Stack Overflow for finding relevant coding context and examples.
    27,145
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    Provides instant access to a searchable knowledge base of 16,000+ community-driven troubleshooting solutions for common coding problems. Includes community feedback and smart ranking to help AI assistants find the most effective solutions.
  • F
    license
    B
    quality
    D
    maintenance
    Provides structured web search capabilities optimized for technical and software development content via providers like OpenRouter. It enables AI agents to perform research and retrieve relevant technical data in a consistent, programmatic JSON format.
    1

View all related MCP servers

Related MCP Connectors

  • Search Stack Exchange questions, fetch Q&A threads as markdown, look up tag FAQs and user profiles.

  • LLM-ready web search + instant answers + URL-to-clean-text fetch for agents and RAG.

  • Give your agent live data from Twitter, Reddit, the web and GitHub. No API keys, no scraping stack.

View all MCP Connectors

Latest Blog Posts

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/ygfest/stack-over-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server