We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cogell/mural-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.template•883 B
# Mural MCP Server Environment Configuration
# Copy this file to .env and fill in your actual values
# Required - Get from Mural Developer Portal
MURAL_CLIENT_ID=your-client-id-here
# Recommended - OAuth client secret (more secure than public client)
MURAL_CLIENT_SECRET=your-client-secret-here
# Optional - OAuth redirect URI (defaults to http://localhost:3000/callback)
# MURAL_REDIRECT_URI=http://localhost:3000/callback
# OAuth Scopes Required for Testing:
# - Basic tests: No special scopes needed
# - Workspace tests: workspaces:read
# - Board tests: murals:read
# - Content creation tests: murals:read, murals:write
# Instructions:
# 1. Sign up at https://developers.mural.co/
# 2. Create a new OAuth application
# 3. Copy your CLIENT_ID and CLIENT_SECRET here
# 4. Save this file as .env (remove .template)
# 5. Run authentication: pnpm start
# 6. Run tests: pnpm test