MCP Servers Collection
A collection of MCP servers providing structured interfaces for AI assistants to interact with various development tools and services.
MCP Servers Collection
A collection of Model Context Protocol (MCP) servers for enhancing AI tooling capabilities. These servers provide structured interfaces for AI assistants to interact with various development tools and services.
What is MCP?
The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely connect to external data sources and tools. MCP servers expose specific functionality as tools that AI assistants can discover and use.
Available Servers
🔄 Overmind Server
Path: overmind/
Purpose: Process management for Procfile-based applications using Overmind
Installation:
uvx --from git+https://github.com/geoffjay/mcp-servers#subdirectory=overmind mcp-server-overmind
📈 Fundamental Analysis Server
Path: fundamental_analysis/
Purpose: Performs fundamental analysis for a given stock code using the Finnhub API.
Installation:
uvx --from git+https://github.com/geoffjay/mcp-servers#subdirectory=fundamental_analysis mcp-server-fundamental-analysis
Key Features:
- Start, stop, and restart processes defined in Procfiles
- Monitor process status and health
- Execute commands within the Overmind environment
- Socket-based detection of running instances
- Support for custom Procfile locations and formations
Tools Available:
overmind_start- Start Overmind with optional configurationovermind_stop- Stop specific processes or all processesovermind_restart- Restart specified processesovermind_status- Get status of all processesovermind_quit- Gracefully quit Overmindovermind_kill- Forcefully kill all processesovermind_run- Run commands in Overmind environmentovermind_connect- Get connection instructions for processesovermind_is_running- Check if Overmind is runningovermind_check_procfile- Validate Procfile existence and contentsovermind_find_procfiles- Find all Procfiles in a directory tree
Requirements: Overmind and tmux must be installed on the system.
Testing: The overmind/test_environment/ directory contains a complete test setup with sample processes and testing utilities. Run ./overmind/test_environment/run_tests.sh for comprehensive testing.
Quick Start
Using with Claude Desktop
Add any of these servers to your Claude Desktop configuration:
{
"mcpServers": {
"overmind": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/geoffjay/mcp-servers#subdirectory=overmind",
"mcp-server-overmind"
]
}
}
}
Using with Other MCP Clients
Each server can be executed directly:
# Overmind server
uvx --from git+https://github.com/geoffjay/mcp-servers#subdirectory=overmind mcp-server-overmind
Development
Prerequisites
- Python 3.10 or higher
- uv for dependency management
- direnv (optional, for automatic environment activation)
Project Structure
mcp-servers/
├── README.md # This file
├── overmind/ # Overmind process manager server
│ ├── src/mcp_server_overmind/
│ ├── tests/
│ ├── pyproject.toml
│ ├── .envrc
│ └── README.md
└── [future-servers]/ # Additional servers will be added here
Adding a New Server
- Create a new directory for your server
- Set up the project structure:
your-server/ ├── src/mcp_server_yourname/ │ ├── __init__.py │ └── server.py ├── tests/ ├── pyproject.toml ├── .envrc └── README.md - Configure
pyproject.tomlwith:- Package name:
mcp-server-yourname - Entry point:
mcp-server-yourname = "mcp_server_yourname.server:main" - Dependencies including
mcp>=1.2.0
- Package name:
- Implement your server using the FastMCP framework
- Add comprehensive tests
- Document your server in its README.md
- Update this main README.md to include your server
Running Tests
Each server includes its own test suite:
cd your-server-directory
uv run --extra dev pytest tests/ -v
Building and Testing Locally
cd your-server-directory
uv build
uv run your-entry-point
Contributing
We welcome contributions! Please:
- Follow the existing project structure and patterns
- Include comprehensive tests for new functionality
- Add thorough documentation
- Ensure your server follows MCP best practices
- Update this README when adding new servers
Code Style
- Use Python type hints throughout
- Follow async/await patterns for I/O operations
- Include docstrings for all public functions
- Use descriptive tool names and clear parameter documentation
Testing Requirements
- Achieve high test coverage (aim for >90%)
- Include both unit and integration tests
- Mock external dependencies appropriately
- Test both success and failure scenarios
License
This project is licensed under the MIT License. See individual server directories for specific license information.
Resources
Support
For issues with specific servers, please refer to their individual README files. For general project issues or questions, please open an issue in this repository.
Server Status
| Server | Status | Version | Last Updated |
|---|---|---|---|
| overmind | ✅ Stable | 0.1.0 | January 2025 |
| fundamental_analysis | ✅ Stable | 0.1.0 | January 2025 |
Roadmap
Future servers under consideration:
- Development environment setup
- Audio processing (MIDI/OSC)
Máy chủ liên quan
Scout Monitoring MCP
nhà tài trợPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
nhà tài trợAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
Kestra Python MCP Server
A Python implementation of a Model Context Protocol server for interacting with Kestra.
Modellix Docs
Search the Modellix knowledge base to quickly find relevant technical information, code examples, and API references. Retrieve implementation details and official guides to solve development queries efficiently. Access direct links to documentation for deeper context on specific features and tools.
Remote Weather MCP Server
A remote, authentication-free MCP server for weather data, deployable on Cloudflare Workers or run locally via npm.
Claude Code Buddy (CCB)
Add persistent project memory and smart task routing to Claude Code. Stop repeating context every session - Claude finally remembers your architecture, decisions, and patterns forever. 100% local, 17 MCP tools.
Autodev Codebase
A platform-agnostic code analysis library with semantic search capabilities and MCP server support.
VSCode MCP Server
A VSCode extension that acts as an MCP server, providing access to diagnostic tools and debug session management.
MCP Documentation Server
Integrates LLM applications with documentation sources using the Model Context Protocol.
imgx-mcp
AI image generation and editing MCP server. Text-to-image, text-based editing with iterative refinement. Multi-provider (Gemini + OpenAI).
plugged.in MCP Proxy Server
A middleware that aggregates multiple Model Context Protocol (MCP) servers into a single unified interface.
MCP Gateway
A feature-rich gateway and proxy that federates MCP and REST services, unifying discovery, authentication, rate-limiting, and observability into a single endpoint for AI clients.