Skip to main content
Glama

emqx-mcp-server

by Benniu
""" Configuration Module for EMQX MCP Server This module loads configuration parameters from environment variables, specifically for connecting to the EMQX Cloud or self-hosted EMQX API. """ import os from dotenv import load_dotenv # Load environment variables from .env file if it exists load_dotenv() # EMQX Cloud API configuration. # These variables should be set in the environment or .env file EMQX_API_URL = os.getenv("EMQX_API_URL", "") # Base URL for the EMQX HTTP API EMQX_API_KEY = os.getenv("EMQX_API_KEY", "") # API key for authentication EMQX_API_SECRET = os.getenv("EMQX_API_SECRET", "") # API secret for authentication

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Benniu/emqx-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server