Skip to main content
Glama
kabirrgrover

WHOOP MCP Server for Poke

by kabirrgrover
config.py571 B
""" Configuration management for the MCP server. """ import os from typing import Optional from pydantic_settings import BaseSettings class Settings(BaseSettings): """Application settings loaded from environment variables.""" port: int = 3000 mcp_auth_token: Optional[str] = None # WHOOP API credentials whoop_email: Optional[str] = None whoop_password: Optional[str] = None class Config: env_file = ".env" env_file_encoding = "utf-8" case_sensitive = False # Global settings instance settings = Settings()

Latest Blog Posts

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/kabirrgrover/whoop-mcp-poke'

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