Show HN:GuMCP – 免费托管的开源 MCP 服务器
Show HN: GuMCP – Open-source MCP servers, hosted for free

原始链接: https://github.com/gumloop/guMCP

guMCP是一个开源项目,提供统一的模型上下文协议 (MCP) 服务器集合,涵盖本地和远程服务器,旨在促进AI集成领域的社区发展。与许多闭源或有限开源的MCP解决方案不同,guMCP提供了一套全面的服务器,其底层架构一致,支持stdio和SSE两种传输方式。 该项目包含用于文件系统、数据库、开发工具、网页自动化、生产力工具、AI等领域的服务器。入门方法是克隆仓库,设置虚拟环境,安装依赖项,配置环境变量,并通过Python脚本在本地启动服务器。也可以在本地启动SSE服务器,该服务器为所有可用服务器提供单一端点。 欢迎贡献,包括新增服务器、改进传输方式、编写文档和修复bug。安全是重中之重,我们将为负责任的安全漏洞披露提供奖励。guMCP在GPL-3.0许可下发布,基于MCP规范,并受到Anthropic等实现的启发。我们鼓励通过GitHub Issues、Discussions和项目论坛提交bug报告、功能请求和参与社区讨论。

GuMCP是一个开源项目,提供了一个统一的框架来运行和认证机器通信协议(MCP)服务器。与Zapier(闭源)等现有解决方案不同,GuMCP提供了一种简单的方法,可以通过托管的服务器发送事件(SSE)和本地标准I/O (stdio)进行连接。 其主要区别在于: * **统一身份认证:** 一个通用的`AuthClient`确保所有服务器的一致身份认证,支持本地、OAuth和Gumloop认证。 * **简单的SSE部署:** 所有SSE服务器都可以在单个URL下部署。 * **开源托管:** 开源贡献会立即被托管,简化了服务器部署。 Gumloop旨在免费托管这些服务器并将它们集成到Gumloop流程中,为MCP客户端提供了一种新的方法。另一位评论者询问了集成类似OpenAdaptAI的OmniMCP的内容,反映了社区对扩展的兴趣。
相关文章

原文

guMCP is an open-source collection of Model Context Protocol (MCP) servers that can be run both remotely and locally. The project aims to create the largest collection of MCP servers with a unified backend, fostering a community around AI integrations and the future of AGI.

While many MCP server providers are closed source, and open-source alternatives typically only support local hosting through stdio, guMCP provides:

  • A comprehensive collection of MCP servers that work both locally and remotely
  • Support for both stdio and SSE (Server-Sent Events) transports
  • A unified backend architecture for consistent implementation
  • Full open-source access to encourage community contributions
  • Dual Transport Support: All servers support both:

    • Local hosting through stdio
    • Remote hosting through SSE
  • Unified Backend: Consistent implementation patterns across all servers

  • Extensive Server Collection: Including servers for:

    • File systems and databases
    • Development tools
    • Web and browser automation
    • Productivity and communication
    • AI and specialized tools

Watch the video

  1. Clone the repository:
git clone https://github.com/gumloop/guMCP.git
cd guMCP
  1. Create and activate virtual environment:
python -m venv venv
source venv/bin/activate  # On Unix/macOS
venv\Scripts\activate     # On Windows
  1. Install dependencies:
pip install -r requirements.txt
pip install -r requirements-dev.txt
  1. Set up environment variables:
cp .env.example .env  # Then edit with your configuration
python src/servers/local.py --server=simple-tools-server

For convenience, we also provide a lightweight MCP Client to start and connect to stdio servers. Usage:

 python tests/clients/LocalMCPTestClient.py --server=simple-tools-server

An SSE server can be run locally. This will provide a single URL and host every server available.

To start the SSE development server, run:

./start_remote_dev_server.sh

For convenience, we also prove a lightweight MCP Client to connect to SSE servers. Usage:

python tests/clients/RemoteMCPTestClient.py --endpoint=http://localhost:8000/simple-tools-server/local

We welcome contributions! Please see our CONTRIBUTING.md for guidelines.

Key areas for contribution:

  • New server implementations
  • Transport improvements
  • Documentation
  • Test coverage
  • Bug fixes

This project is licensed under the GNU General Public License v3.0 (GPL-3.0) - see the LICENSE file for details.

Security is the single highest priority for us.

That's why Gumloop is SOC 2 Type II, GDPR, and HIPAA compliant, and why for this OSS repo, we're actively rewarding those who responsibly disclose serious vulnerabilities and exploits to [email protected].

  • GitHub Issues: Bug reports and feature requests
  • GitHub Discussions: General questions and discussions
  • Forum: Community discussions and support

This project builds on the Model Context Protocol (MCP) specification and is inspired by the work of various MCP implementations in the community, especially those at Anthropic.

Thank you to all the contributors that have provided feedback, advice, and early servers for the repository.

联系我们 contact @ memedata.com