MCP Catalogs
Home

fullstack-langgraph-nextjs-agent vs everything

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

fullstack-langgraph-nextjs-agent
by agentailor
everything
by modelcontextprotocol
Stars★ 106★ 85,748
30d uses
Score4777
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

fullstack-langgraph-nextjs-agent · Summary

Production-ready Next.js template with MCP integration for dynamic tool loading in AI agents.

everything · Summary

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

fullstack-langgraph-nextjs-agent · Use cases

  • Building production-ready AI agents with tool calling capabilities
  • Creating applications requiring human approval for AI tool usage
  • Developing systems with persistent conversation memory and multimodal support

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

fullstack-langgraph-nextjs-agent · Install

Installation

  1. **Clone and Install**
git clone https://github.com/IBJunior/fullstack-langgraph-nextjs-agent.git
cd fullstack-langgraph-nextjs-agent
pnpm install
  1. **Environment Setup**
cp .env.example .env.local

Edit .env.local with your configuration:

# Database
DATABASE_URL="postgresql://user:password@localhost:5434/agent_db"

# AI Models
OPENAI_API_KEY="sk-..."
GOOGLE_API_KEY="..."
ANTHROPIC_API_KEY="sk-ant-..."
  1. **Start Services**
docker compose up -d  # Starts PostgreSQL and MinIO
  1. **Database Setup**
pnpm prisma:generate
pnpm prisma:migrate
  1. **Run Development Server**
pnpm dev

Claude Desktop Integration

To use with Claude Desktop, add to claude_desktop_config.json:

{"mcpServers": {"langgraph-agent": {"command": "node", "args": ["path/to/your/project/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.