dotprompts
Verified Safeby paoloricciuti
Overview
A SvelteKit application that serves as a personal collection of AI prompts, exposing them as Model Context Protocol (MCP) tools and messages.
Installation
npm run previewEnvironment Variables
- DATABASE_URL
- DATABASE_TOKEN
- BETTER_AUTH_URL
- GITHUB_CLIENT_ID
- GITHUB_CLIENT_SECRET
- GOOGLE_CLIENT_ID
- GOOGLE_CLIENT_SECRET
Security Notes
The server uses `Access-Control-Allow-Origin: *` and `Access-Control-Allow-Headers: *` for CORS on several API endpoints, including the MCP server and OAuth discovery endpoints. While this might be intentional for MCP interoperability and OAuth client discovery, it broadly allows cross-origin requests, which can pose security risks if not carefully managed or if other layers of security are not in place. Environment variables are correctly used for sensitive information like database credentials and OAuth client secrets, which is a good practice.
Similar Servers
claude-prompts-mcp
Manages hot-reloadable prompt templates, structured reasoning, and multi-step chain workflows to enhance AI assistant interactions through a Model Context Protocol (MCP) compatible server.
Kotak_Neo_MCP_Server_With_Agentic_Application.
A server designed to host and manage AI agentic applications, likely for automating tasks or processing information. The specific functionality is unknown due to missing code.
model-context-protocol
This server implements the Model Context Protocol, likely for managing and serving contextual data and interactions for AI models.
MCP_prompt_broker
A Python-based Model Context Protocol (MCP) server that analyzes user prompts, extracts metadata, and selects the most relevant instruction profile for an LLM like GitHub Copilot Chat.