mcpifier
by summerdawn-ai·★ 1·Score 37
Mcpifier is a zero-code gateway that converts REST APIs into MCP servers using Swagger/OpenAPI specs.
Overview
Mcpifier allows developers to expose existing REST APIs as MCP servers without code changes. It can be used as a library, ASP.NET Core middleware, or a command-line server, supporting automatic tool generation from Swagger/OpenAPI specifications or full customization via JSON configuration. The project implements the MCP protocol and JSON-RPC 2.0 with authorization, supporting both HTTP and stdio communication across Windows, Linux, and macOS platforms.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose Mcpifier when you need to quickly expose existing REST APIs as MCP tools without modifying the API itself, especially if you're already working in a .NET ecosystem.
When NOT to choose this
Avoid Mcpifier if you need streaming support, binary data handling, or authentication beyond what your existing REST API provides, as it currently lacks these features.
Comparable tools
Installation
Installation
NuGet Package
Install-Package Summerdawn.Mcpifier.NET Tool
dotnet tool install -g Summerdawn.Mcpifier.ServerClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcpifier": {
"command": "mcpifier",
"args": ["stdio"]
}
}
}FAQ
- Can I use Mcpifier with any REST API?
- Yes, Mcpifier works with any existing REST API without requiring code changes to the API itself.
- Does Mcpifier support streaming responses?
- No, currently Mcpifier does not support streaming responses or Server-Sent Events (SSE). Only request-response patterns are supported.
Compare mcpifier with
Last updated · Auto-generated from public README + GitHub signals.