File size: 10,949 Bytes
a0fdf9c a6bfba7 a0fdf9c 17ebcb4 bb7a8e6 a0fdf9c a6bfba7 17ebcb4 a6bfba7 a0fdf9c a6bfba7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
---
title: Stack_Overflow_MCP_Server
app_file: app.py
sdk: gradio
sdk_version: 5.33.1
tags:
- mcp-server-track
pinned: true
---
# <div align="center">Stack Overflow MCP Server</div>
<div align="center">
[![Python Version][python-badge]][python-url]
[![License][license-badge]][license-url]
</div>
This [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server enables AI assistants like Claude to search and access Stack Overflow content through a standardized protocol, providing seamless access to programming solutions, error handling, and technical knowledge.
> [!NOTE]
>
> The Stack Overflow MCP Server is currently in Beta. We welcome your feedback and encourage you to report any
<video controls autoplay src="https://cdn-uploads.huggingface.co/production/uploads/683d5a1712350a7aef349067/XcO719SNnPqxFMReogigd.qt"></video>
6-11 at 2.23.36β―AM.movβ¦]()
## Features
- π **Multiple Search Methods**: Search by query, error message, or specific question ID
- π **Advanced Filtering**: Filter results by tags, score, accepted answers, and more
- π§© **Stack Trace Analysis**: Parse and find solutions for error stack traces
- π **Rich Formatting**: Get results in Markdown or JSON format
- π¬ **Comments Support**: Optionally include question and answer comments
- β‘ **Rate Limiting**: Built-in protection to respect Stack Exchange API quotas
### Example Prompts and Use Cases
Here are some example prompts you can use with Claude when the Stack Overflow MCP server is integrated:
| Tool | Example Prompt | Description |
| --------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------- |
| `search_by_query` | "Search Stack Overflow for Django pagination best practices" | Finds the most relevant questions and answers about Django pagination techniques |
| `search_by_query` | "Find Python asyncio examples with tags python and asyncio" | Searches for specific code examples filtering by multiple tags |
| `search_by_error` | "Why am I getting 'TypeError: object of type 'NoneType' has no len()' in Python?" | Finds solutions for a common Python error |
| `get_question` | "Get Stack Overflow question 53051465 about React hooks" | Retrieves a specific question by ID, including all answers |
| `analyze_stack_trace` | "Fix this error: ReferenceError: useState is not defined at Component in javascript" | Analyzes JavaScript error to find relevant solutions |
| `advanced_search` | "Find highly rated answers about memory leaks in C++ with at least 10 upvotes" | Uses advanced filtering to find high-quality answers |
## Prerequisites
Before using this MCP server, you need to:
1. Get a Stack Exchange API key (see below)
2. Have Python 3.10+ installed
3. Install [uv](https://docs.astral.sh/uv/getting-started/installation/) (recommended)
### Getting a Stack Exchange API Key
To use this server effectively, you'll need a Stack Exchange API key:
1. Go to [Stack Apps OAuth Registration](https://stackapps.com/apps/oauth/register)
2. Fill out the form with your application details:
- Name: "Stack Overflow MCP" (or your preferred name)
- Description: "MCP server for accessing Stack Overflow"
- OAuth Domain: "localhost" (for local usage)
- Application Website: Your website or leave blank
3. Submit the form
4. Copy your API Key (shown as "Key" on the next page)
This API key is not considered a secret and may be safely embedded in client-side code or distributed binaries. It simply allows you to receive a higher request quota when making requests to the Stack Exchange API.
## Installation
### Installing from PyPI
[Stackoverflow PyPI page](https://pypi.org/project/stackoverflow-mcp/0.1.3/)
```bash
# Using pip
pip install stackoverflow-mcp
# OR Using uv
uv venv
uv pip install stackoverflow-mcp
# OR using uv wihtout an venv
uv pip install stackoverflow-mcp --system
```
### Installing from Source
```bash
# Clone the repository
git clone https://github.com/yourusername/stackoverflow-mcp-server.git
cd stackoverflow-mcp-server
# Install with uv
uv venv
uv pip install -e .
```
### Adding to Claude Desktop
To run the Stack Overflow MCP server with Claude Desktop:
1. Download [Claude Desktop](https://claude.ai/download).
2. Launch Claude and navigate to: Settings > Developer > Edit Config.
3. Update your `claude_desktop_config.json` file with the following configuration:
```json
{
"mcpServers": {
"stack-overflow": {
"command": "uv",
"args": ["run", "-m", "stackoverflow_mcp"],
"env": {
"STACK_EXCHANGE_API_KEY": "your_API_key"
}
}
}
}
```
You can also specify a custom directory:
```json
{
"mcpServers": {
"stack-overflow": {
"command": "uv",
"args": [
"--directory",
"/path/to/stackoverflow-mcp-server",
"run",
"main.py"
],
"env": {
"STACK_EXCHANGE_API_KEY": "your_api_key_here"
}
}
}
}
```
## Configuration
### Environment Variables
The server can be configured using these environment variables:
```bash
# Required
STACK_EXCHANGE_API_KEY=your_api_key_here
# Optional
MAX_REQUEST_PER_WINDOW=30 # Maximum requests per rate limit window
RATE_LIMIT_WINDOW_MS=60000 # Rate limit window in milliseconds (1 minute)
RETRY_AFTER_MS=2000 # Delay after hitting rate limit
```
### Using a .env File
You can create a `.env` file in the project root:
```
STACK_EXCHANGE_API_KEY=your_api_key_here
MAX_REQUEST_PER_WINDOW=30
RATE_LIMIT_WINDOW_MS=60000
RETRY_AFTER_MS=2000
```
## Usage
### Available Tools
The Stack Overflow MCP server provides the following tools:
#### 1. search_by_query
Search Stack Overflow for questions matching a query.
```
Parameters:
- query: The search query
- tags: Optional list of tags to filter by (e.g., ["python", "pandas"])
- excluded_tags: Optional list of tags to exclude
- min_score: Minimum score threshold for questions
- has_accepted_answer: Whether questions must have an accepted answer
- include_comments: Whether to include comments in results
- response_format: Format of response ("json" or "markdown")
- limit: Maximum number of results to return
```
#### 2. search_by_error
Search Stack Overflow for solutions to an error message.
```
Parameters:
- error_message: The error message to search for
- language: Programming language (e.g., "python", "javascript")
- technologies: Related technologies (e.g., ["react", "django"])
- min_score: Minimum score threshold for questions
- include_comments: Whether to include comments in results
- response_format: Format of response ("json" or "markdown")
- limit: Maximum number of results to return
```
#### 3. get_question
Get a specific Stack Overflow question by ID.
```
Parameters:
- question_id: The Stack Overflow question ID
- include_comments: Whether to include comments in results
- response_format: Format of response ("json" or "markdown")
```
#### 4. analyze_stack_trace
Analyze a stack trace and find relevant solutions on Stack Overflow.
```
Parameters:
- stack_trace: The stack trace to analyze
- language: Programming language of the stack trace
- include_comments: Whether to include comments in results
- response_format: Format of response ("json" or "markdown")
- limit: Maximum number of results to return
```
#### 5. advanced_search
Advanced search for Stack Overflow questions with many filter options.
```
Parameters:
- query: Free-form search query
- tags: List of tags to filter by
- excluded_tags: List of tags to exclude
- min_score: Minimum score threshold
- title: Text that must appear in the title
- body: Text that must appear in the body
- answers: Minimum number of answers
- has_accepted_answer: Whether questions must have an accepted answer
- sort_by: Field to sort by (activity, creation, votes, relevance)
- include_comments: Whether to include comments in results
- response_format: Format of response ("json" or "markdown")
- limit: Maximum number of results to return
```
## Development
This section is for contributors who want to develop or extend the Stack Overflow MCP server.
### Setting Up Development Environment
```bash
# Clone the repository
git clone https://github.com/yourusername/stackoverflow-mcp-server.git
cd stackoverflow-mcp-server
# Install dev dependencies
uv pip install -e ".[dev]"
```
### Running Tests
```bash
# Run all tests
pytest
# Run specific test modules
pytest tests/test_formatter.py
pytest tests/test_server.py
# Run tests with coverage report
pytest --cov=stackoverflow_mcp
```
### Project Structure
```
stackoverflow-mcp-server/
βββ stackoverflow_mcp/ # Main package
β βββ __init__.py
| |ββ __main__.py # Entry point
β βββ api.py # Stack Exchange API client
β βββ env.py # Environment configuration
β βββ formatter.py # Response formatting utilities
β βββ server.py # MCP server implementation
β βββ types.py # Data classes
βββ tests/ # Test suite
β βββ api/
β β βββ test_search.py # API search tests
β βββ test_formatter.py # Formatter tests
β βββ test_general_api_health.py # API health tests
β βββ test_server.py # Server tests
βββ pyproject.toml # Package configuration
βββ api_query.py # testing stackexchange outside of MCP context
βββ LICENSE # License file
βββ README.md # This file
```
## Contributing
Contributions are welcome! Here's how you can contribute:
1. Fork the repository
2. Create a feature branch: `git checkout -b feature/my-feature`
3. Commit your changes: `git commit -am 'Add new feature'`
4. Push to the branch: `git push origin feature/my-feature`
5. Submit a pull request
Please make sure to update tests as appropriate and follow the project's coding style.
## License
This project is licensed under the MIT License - see the LICENSE file for details.
---
<p align="center">
Stack Overflow MCP Server: AI-accessible programming knowledge
</p>
<!-- Badges -->
[python-badge]: https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12-blue.svg
[python-url]: https://www.python.org/downloads/
[license-badge]: https://img.shields.io/badge/license-MIT-green.svg
[license-url]: LICENSE
|