From ffba5d43c7c0a9f7bdfb1e7750c22648c3123827 Mon Sep 17 00:00:00 2001 From: Mustafa Turan Date: Thu, 1 Jan 2026 05:43:34 -0800 Subject: [PATCH] Add HasMCP to the list of MCP tools MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Add HasMCP to README** Added HasMCP to the "For servers" section - a no-code tool that generates production-ready MCP servers from OpenAPI, Swagger specifications. Additionally, it allows manual server creation and can generate MCP servers using its own MCP via LLMs. HasMCP is a self-hosted MCP Server generator framework, which comes with built-in log tracer. The log tracing features helps debugging MCP Servers and MCP Clients. Docs: https://docs.hasmcp.com Github: https://github.com/hasmcp/hasmcp-ce **Server Details** Server: HasMCP Category: Server Framework / No-code Server Generator Repository: https://github.com/hasmcp/hasmcp-ce **Motivation and Context** HasMCP fills a gap in the ecosystem by providing an AI-powered way to generate complete MCP server without any coding. It comes built-in tools like live log tracing which helps both MCP Server owners and MCP Clients to debug the input/output for each call. OpenAPI → MCP Server: Auto-convert REST APIs with full auth support (API Key, Bearer, OAuth2) Natural Language → MCP Server: Describe tools in plain English, get working server using its own MCP Server via LLMs Multi-Provider: Works with Anthropic Claude, OpenAI GPT, and Google Gemini Generated servers work with all MCP-compatible frameworks: Claude Code, OpenAI Agents SDK, Google ADK, LangChain, CrewAI, and more. How Has This Been Tested? ✅ Tested with Claude Code and Claude Desktop ✅ Used by companies in production ✅ Generated servers validated with multiple LLM clients Breaking Changes None - this is an addition to the server frameworks list. Checklist [x] I have read the https://modelcontextprotocol.io [x] My changes follows MCP security best practices [x] I have updated the server's README accordingly [x] I have tested this with an LLM client [x] My code follows the repository's style guidelines [x] New and existing tests pass locally [x] I have added appropriate error handling [x] I have documented all environment variables and configuration options --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c72349eab6..3e32b90fdb 100644 --- a/README.md +++ b/README.md @@ -1474,6 +1474,7 @@ These are high-level frameworks that make it easier to build MCP servers or clie * **[FastMCP](https://github.com/punkpeye/fastmcp)** (TypeScript) * **[Foobara MCP Connector](https://github.com/foobara/mcp-connector)** - Easily expose Foobara commands written in Ruby as tools via MCP * **[Foxy Contexts](https://github.com/strowk/foxy-contexts)** – A library to build MCP servers in Golang by **[strowk](https://github.com/strowk)** +* **[HasMCP](https://github.com/hasmcp/hasmcp-ce)** - Convert API endpoints to MCP Server in Seconds (Language-agnostic, Self-hosted, Docker) * **[Higress MCP Server Hosting](https://github.com/alibaba/higress/tree/main/plugins/wasm-go/mcp-servers)** - A solution for hosting MCP Servers by extending the API Gateway (based on Envoy) with wasm plugins. * **[MCP Declarative Java SDK](https://github.com/codeboyzhou/mcp-declarative-java-sdk)** Annotation-driven MCP servers development with Java, no Spring Framework Required, minimize dependencies as much as possible. * **[MCP-Framework](https://mcp-framework.com)** Build MCP servers with elegance and speed in TypeScript. Comes with a CLI to create your project with `mcp create app`. Get started with your first server in under 5 minutes by **[Alex Andru](https://github.com/QuantGeekDev)**