MCP Catalogs
首页

everything vs LLaMa-MCP-Streamlit

并排对比,帮你在这两个 MCP server 之间做选择。

everything
by modelcontextprotocol
LLaMa-MCP-Streamlit
by Nikunj2003
Stars★ 85,748★ 43
30天用量
综合分7736
官方
分类
开发者工具AI / LLM 工具其它
AI / LLM 工具开发者工具效率工具
实现语言TypeScriptPython
最近提交本月15 个月前

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

LLaMa-MCP-Streamlit · 概述

基于Streamlit的AI助手,通过MCP实现与LLaMa 3.3或Ollama模型的工具交互。

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

LLaMa-MCP-Streamlit · 使用场景

  • 创建可通过MCP执行命令的交互式聊天界面
  • 构建具有文件系统工具访问权限的自定义AI助手
  • 开发具有外部工具集成功能的LLM应用程序原型

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

LLaMa-MCP-Streamlit · 安装

安装步骤

  1. 克隆仓库
  2. .env文件中设置环境变量:

```bash # NVIDIA NIM API API_ENDPOINT=https://integrate.api.nvidia.com/v1 API_KEY=your_api_key_here

# Ollama API_ENDPOINT=http://localhost:11434/v1/ API_KEY=ollama ```

  1. 使用Poetry安装依赖:

``bash poetry install ``

  1. 运行Streamlit应用:

``bash poetry run streamlit run llama_mcp_streamlit/main.py ``

要使用Claude Desktop,添加到claude_desktop_config.json

{
  "mcpServers": {
    "llama-mcp-streamlit": {
      "command": "python",
      "args": ["path/to/llama_mcp_streamlit/utils/mcp_server.py"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。