mcp-stytch-consumer-todo-list
by stytchauth·★ 27·Score 44
Cloudflare Workers MCP server for TODO list management with Stytch authentication.
Overview
This is a comprehensive MCP server built on Cloudflare Workers that combines a static website, REST API, and MCP functionality for a TODO application. It uses Stytch for user authentication and demonstrates how to extend traditional full-stack applications for AI agent use. The server exposes MCP functionality through Durable Objects and provides both local development and deployment options to Cloudflare Workers.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this if you need an MCP server with proper authentication for accessing TODO functionality, especially if you're already using or planning to use Stytch for authentication.
When NOT to choose this
Avoid if you need self-hosted solution or don't want vendor lock-in to both Cloudflare Workers and Stytch authentication services.
Comparable tools
Installation
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"
}
}
}
}FAQ
- What authentication mechanism does this MCP server use?
- This server uses Stytch, specifically their Consumer SaaS authentication product for user identity management.
- Where can I test the MCP server functionality?
- You can test the MCP server using the MCP Inspector at `http://localhost:3000/mcp` when running locally or at the deployed URL after deployment.
Compare mcp-stytch-consumer-todo-list with
Last updated · Auto-generated from public README + GitHub signals.