everything vs mcp-stytch-consumer-todo-list
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-stytch-consumer-todo-list by stytchauth | |
|---|---|---|
| Stars | ★ 85,748 | ★ 27 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivityDeveloper ToolsSecurity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-stytch-consumer-todo-list · Summary
Cloudflare Workers MCP server for TODO list management with Stytch authentication.
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-stytch-consumer-todo-list · Use cases
- AI agents managing personal TODO lists with authentication
- Demonstration of integrating MCP with authentication systems
- Example of building MCP servers on serverless platforms
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-everythingmcp-stytch-consumer-todo-list · Install
Installation
- Clone the repository:
git clone https://github.com/stytchauth/mcp-stytch-consumer-todo-list.git - Install dependencies:
npm i - Copy environment templates:
cp .env.template .env.localandcp .dev.vars.template .dev.vars - Configure environment variables with your Stytch credentials
- Run locally:
npm run dev - MCP server is available at
http://localhost:3000/mcp
Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"stytch-todo": {
"command": "npx",
"args": ["@modelcontextprotocol/inspector@latest"],
"env": {
"STYTCH_PROJECT_ID": "your-project-id",
"STYTCH_SECRET": "your-secret"
}
}
}
}