# FastAPI MCP Project Configuration

# Application Settings
PROJECT_NAME=FastAPI MCP Project
VERSION=0.1.0
API_V1_STR=/api/v1

# Server Settings
HOST=0.0.0.0
PORT=8000
DEBUG=false

# CORS Settings
# Comma-separated list of allowed origins
; BACKEND_CORS_ORIGINS=http://localhost:3000,http://localhost:8080

# MCP (Model Context Protocol) Settings
MCP_ENABLED=true
MCP_MOUNT_PATH=/mcp
MCP_TITLE=FastAPI MCP Server
MCP_DESCRIPTION=FastAPI endpoints exposed as MCP tools

# Authentication Settings
SECRET_KEY=changethis
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30

# MCP API Key (optional, for additional MCP endpoint security)
# MCP_API_KEY=your-mcp-api-key-here
