MCP Catalogs
Home

mcp-agent-langchainjs vs everything

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

mcp-agent-langchainjs
by Azure-Samples
everything
by modelcontextprotocol
Stars★ 183★ 85,748
30d uses
Score4877
Official
Categories
AI / LLM ToolsE-commerceDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

mcp-agent-langchainjs · Summary

A burger ordering AI agent system using LangChain.js and MCP servers to interact with a restaurant API.

everything · Summary

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

mcp-agent-langchainjs · Use cases

  • AI-powered food ordering system through natural language conversation
  • Demonstration of MCP tool calling for real-world applications
  • Serverless architecture for scalable AI agents

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-agent-langchainjs · Install

Installation Steps

  1. **GitHub Codespaces (Recommended)**:

- Open the project in [GitHub Codespaces](https://codespaces.new/Azure-Samples/mcp-agent-langchainjs?hide_repo_select=true&ref=main&quickstart=true) for a preconfigured environment

  1. **Local Development**:

- Clone the repository: git clone <your-repo-url> - Install Node.js LTS - Install Azure Developer CLI 1.19+ - For local testing with Ollama: ``bash ollama pull qwen3:8b ` Create a .env file with: `env AZURE_OPENAI_API_ENDPOINT="http://localhost:11434/v1" AZURE_OPENAI_MODEL="qwen3:8b" AZURE_OPENAI_API_KEY="__not_used__" `` - Start the application following the README instructions

  1. **Deployment to Azure**:

- Run azd auth login - Run azd up to deploy all services

**Claude Desktop Configuration** (add to claude_desktop_config.json):

{
  "mcpServers": {
    "burger-mcp": {
      "command": "node",
      "args": ["packages/burger-mcp/dist/server.js"]
    }
  }
}

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.