fullstack-langgraph-nextjs-agent vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
fullstack-langgraph-nextjs-agent by agentailor | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 106 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
fullstack-langgraph-nextjs-agent · Summary
Production-ready Next.js template with MCP integration for dynamic tool loading in AI agents.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
fullstack-langgraph-nextjs-agent · Install
Installation
- **Clone and Install**
git clone https://github.com/IBJunior/fullstack-langgraph-nextjs-agent.git
cd fullstack-langgraph-nextjs-agent
pnpm install- **Environment Setup**
cp .env.example .env.localEdit .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-..."- **Start Services**
docker compose up -d # Starts PostgreSQL and MinIO- **Database Setup**
pnpm prisma:generate
pnpm prisma:migrate- **Run Development Server**
pnpm devClaude 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"]}}}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.