Start the MCP server with your API key:
minitap-mcp --server --api-key your_minitap_api_key
The server will start on localhost:8000 by default.
Optional: Customize the port with --port 9000 or use environment
variables for configuration.
Configuration Options
CLI Arguments
Environment Variables
# Basic usage
minitap-mcp --server --api-key YOUR_KEY
# With custom port
minitap-mcp --server --api-key YOUR_KEY --port 9000
# With LLM profile (default: 'default')
minitap-mcp --server --api-key YOUR_KEY --llm-profile PROFILE_NAME
# With cloud mobile (no local device required)
minitap-mcp --server --api-key YOUR_KEY --cloud-mobile-name my-cloud-device
Available options:
--api-key: Your Minitap API key (required)
--port: Custom port (default: 8000)
--llm-profile: LLM profile name (optional)
--cloud-mobile-name: Cloud mobile to connect to (optional, see Cloud Setup)
# Set environment variables
export MINITAP_API_KEY="your_minitap_api_key" # (required)
export MINITAP_API_BASE_URL="https://platform.minitap.ai/api/v1" # (optional)
export MINITAP_LLM_PROFILE_NAME="default" # (optional)
export MCP_SERVER_PORT="8000" # (optional)
export CLOUD_MOBILE_NAME="my-cloud-device" # (optional, enables cloud mode)
# Then simply run
minitap-mcp --server
CLI arguments always override environment variables when both are present.