We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Vergil333/jsm-assets-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.example•1.16 kB
# JSM Assets MCP Server Configuration
# Copy this file to .env and fill in your actual values
# Required: Your JSM Assets workspace ID (UUID format)
# Find this in your JSM Assets URL or admin settings
JSM_WORKSPACE_ID=your-workspace-id-here
# Required: Base64 encoded authentication token
# Format: Basic + base64(email:api_token)
# Example: Basic eW91ci1lbWFpbEBkb21haW4uY29tOkFUQVRUM3hGZkdGMDdyUDYuLi4...
JSM_AUTH_TOKEN=Basic your-encoded-token-here
# Optional: JSM API base URL (defaults to Atlassian cloud)
# Only change if you have a custom Atlassian instance
JSM_BASE_URL=https://api.atlassian.com/jsm/assets/workspace
# Optional: Enable debug logging for development
# Set to 'true' to enable detailed logging
DEBUG=false
# Optional: Environment designation
# Use 'development' for debug features
NODE_ENV=production
# How to create your authentication token:
# 1. Go to https://id.atlassian.com/manage-profile/security/api-tokens
# 2. Create a new API token
# 3. Encode your email:token using base64:
# echo -n "your-email@domain.com:your-api-token" | base64
# 4. Add "Basic " prefix to the result
# 5. Use the final string as JSM_AUTH_TOKEN