We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/andychoi/mcp-strapi'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# ─── Database ──────────────────────────────────────────────────────────────
# Default: SQLite (no external database needed)
DATABASE_CLIENT=sqlite
# DATABASE_FILENAME=.tmp/data.db
# For PostgreSQL (used with docker-compose.prod.yml):
# DATABASE_CLIENT=postgres
# DATABASE_HOST=127.0.0.1
# DATABASE_PORT=5432
# DATABASE_NAME=strapi
# DATABASE_USERNAME=strapi
# DATABASE_PASSWORD=change-me
# ─── Strapi Secrets ───────────────────────────────────────────────────────
# Generate with: openssl rand -base64 32
APP_KEYS=dev-key-1,dev-key-2,dev-key-3,dev-key-4
ADMIN_JWT_SECRET=admin-jwt-secret-dev
API_TOKEN_SALT=api-token-salt-dev
TRANSFER_TOKEN_SALT=transfer-token-salt-dev
JWT_SECRET=jwt-secret-dev
# ─── MCP Plugin ───────────────────────────────────────────────────────────
# Auth mode: 'jwt' (external IdP), 'admin' (Strapi token), false (no auth, dev only)
MCP_AUTH_MODE=false
# For JWT auth mode:
# JWT_ISSUER=https://your-idp.com
# JWT_AUDIENCE=mcp-strapi
# JWT_JWKS_URI=https://your-idp.com/.well-known/jwks.json
# MCP_SECRET_KEY=shared-secret-with-orchestrator
# ─── Server ───────────────────────────────────────────────────────────────
HOST=0.0.0.0
PORT=1337
# ─── Demo Users (created on first boot) ──────────────────────────────────
# admin@example.com (Super Admin) — password: Admin1234!
# editor@example.com (Editor) — password: Admin1234!
# author@example.com (Author) — password: Admin1234!