- Home
- MCP servers
- Zoom API
Zoom API
- python
0
GitHub Stars
python
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"qingyun-wu-zoom-api": {
"command": "python",
"args": [
"mcp_server/main.py",
"stdio"
],
"env": {
"CONFIG": "{...}",
"SECURITY": "API_KEY=your_key",
"CONFIG_PATH": "/path/to/mcp_server/mcp_config.json"
}
}
}
}You run an MCP server that exposes a configurable, local runtime to interact with a specified OpenAPI service. This setup lets you start the server in a standard I/O mode and connect with MCP clients to orchestrate multi-agent conversations against the target API in a controlled environment.
How to use
Start the MCP server in stdio mode to enable local, script-driven interactions with the Zoom API. You can use MCP clients to send requests, receive responses, and manage conversations through the local process.
How to install
Prerequisites you need before installing: Python 3.9 or newer, and a working Python package manager.
# Install Python if needed (example for Debian/Ubuntu)
sudo apt-get update
sudo apt-get install -y python3.9 python3-venv python3-pip
# Create and activate a virtual environment (optional but recommended)
python3.9 -m venv venv
source venv/bin/activate
# Install the MCP server package in editable/dev mode
pip install -e ".[dev]"
# Alternatively, if you prefer to use the uv runtime helper, you can install via uv
uv pip install --editable ".[dev]"
Additional notes
Configuration can be supplied via environment variables. The server looks for a JSON configuration file or a configuration string to customize behavior. You can set a security-related configuration such as API keys through the SECURITY variable. See the environment variable list for details.
To start the server in stdio mode, use the following command.
python mcp_server/main.py stdio
# You can also point the server to a specific config file or JSON config string, if needed
export CONFIG_PATH=mcp_server/mcp_config.json
export CONFIG='{"transport":"stdio"}'
export SECURITY='YOUR_API_KEYS_OR_OTHER_SECRETS'
python mcp_server/main.py stdio