MCPify vs everything
Side-by-side comparison to help you pick between these two MCP servers.
MCPify by abdebek | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 4 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsWeb Scraping | Developer ToolsAI / LLM ToolsOther |
| Language | C# | TypeScript |
| Last commit | 3 mo ago | this month |
MCPify · Summary
MCPify is a .NET library that converts OpenAPI/Swagger specs into MCP tools for AI assistants.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
MCPify · Use cases
- Expose internal .NET APIs as tools for Claude Desktop integration
- Transform public REST APIs with OpenAPI specs into MCP-accessible tools
- Create OAuth-protected MCP tools with automatic token management
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
MCPify · Install
Installation
- Install the package into your ASP.NET Core project:
dotnet add package MCPify- Configure in your Program.cs:
builder.Services.AddMcpify(options => {
options.Transport = McpTransportType.Stdio;
options.LocalEndpoints = new LocalEndpointsOptions {
Enabled = true,
ToolPrefix = "myapp_"
};
});- For Claude Desktop, add to your config file:
{
"mcpServers": {
"my-app": {
"command": "dotnet",
"args": [
"run",
"--project",
"/absolute/path/to/YourProject.csproj",
"--",
"--Mcpify:Transport=Stdio"
]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything