We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/5p00kyy/seafile-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.example•1010 B
# Seafile MCP Server Configuration
# Copy this file to .env and fill in your values
# Required: Your Seafile server URL
SEAFILE_SERVER_URL=https://your-seafile-server.com
# ============================================
# Authentication (choose ONE method)
# ============================================
# Option 1: Account authentication (access all your libraries)
SEAFILE_USERNAME=your@email.com
SEAFILE_PASSWORD=your-password
# Option 2: Repo token authentication (single library, more secure)
# Generate this in Seafile Web UI: Library -> Advanced -> API Token
# SEAFILE_REPO_TOKEN=your-repo-api-token
# SEAFILE_REPO_ID=library-uuid-here
# ============================================
# Optional Settings
# ============================================
# Maximum file size to read into memory (bytes, default: 1MB)
# SEAFILE_MAX_READ_SIZE=1048576
# Maximum file size for uploads (bytes, default: 10MB)
# SEAFILE_MAX_WRITE_SIZE=10485760
# Request timeout in seconds (default: 30)
# SEAFILE_TIMEOUT=30