MCP Catalogs
Home

mcp-server-langfuse vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-langfuse
by langfuse
everything
by modelcontextprotocol
Stars★ 167★ 85,748
30d uses
Score4277
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit15 mo agothis month

mcp-server-langfuse · Summary

MCP server for accessing and managing Langfuse prompts through the Model Context Protocol.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-server-langfuse · Use cases

  • Integrating Langfuse prompt management with AI assistants that support MCP
  • Accessing and deploying production prompts across different applications through MCP
  • Automating prompt management workflows using MCP tool calling

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

mcp-server-langfuse · Install

Install steps:

  1. Build the server:
npm install
npm run build
  1. Add to Claude Desktop by editing claude_desktop_config.json:
{
  "mcpServers": {
    "langfuse": {
      "command": "node",
      "args": ["<absolute-path>/build/index.js"],
      "env": {
        "LANGFUSE_PUBLIC_KEY": "your-public-key",
        "LANGFUSE_SECRET_KEY": "your-secret-key",
        "LANGFUSE_BASEURL": "https://cloud.langfuse.com"
      }
    }
  }
}

Replace environment variables with your actual Langfuse API keys.

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
Comparison generated from public README + GitHub signals. Last updated automatically.