We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/keyurgolani/TasksMultiServer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.example•820 B
# Data Store Configuration
# Options: "postgresql" or "filesystem"
DATA_STORE_TYPE=filesystem
# PostgreSQL Configuration (when DATA_STORE_TYPE=postgresql)
POSTGRES_URL=postgresql://taskmanager:taskmanager@localhost:5432/taskmanager
# Filesystem Configuration (when DATA_STORE_TYPE=filesystem)
FILESYSTEM_PATH=/tmp/tasks
# UI Configuration (for Docker Compose build)
# URL where the REST API is accessible from the browser
VITE_API_BASE_URL=http://localhost:8000
# Multi-Agent Environment Behavior
# When set to "true", only NOT_STARTED tasks appear in ready tasks list
# This prevents multiple agents from picking up the same IN_PROGRESS task
# When set to "false" (default), both NOT_STARTED and IN_PROGRESS tasks are ready
# allowing single agents to resume interrupted work
MULTI_AGENT_ENVIRONMENT_BEHAVIOR=false