ai-agent-dev-week4-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ai-agent-dev-week4-mcp-server by jmjmlang | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 33 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
ai-agent-dev-week4-mcp-server · Summary
An MCP server exposing a Person database with CRUD operations for AI agents using Next.js and Prisma.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ai-agent-dev-week4-mcp-server · Use cases
- Personal CRM assistant that can manage contact information
- Team management tool integrated with AI agents
- Automated contact sync between different systems
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
ai-agent-dev-week4-mcp-server · Install
Installation
- Clone the repository
- Install dependencies:
npm install - Set up your database: Add
DATABASE_URLto.envpointing to your Week 3 Neon database - Push database schema:
npx prisma db push - Run development server:
npm run dev
The server will be available at http://localhost:3000/api/mcp
API Key Setup
Generate an API key for a user:
npm run issue-key -- user@example.com "my laptop"Claude Desktop Configuration
Add to your Claude Desktop config:
{
"mcpServers": {
"ai-agent-dev-week4": {
"command": "npx",
"args": ["ai-agent-dev-week4-mcp-server"],
"env": {
"DATABASE_URL": "your_database_url"
}
}
}
}VS Code Configuration
Copy .vscode/mcp.json into your workspace.
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