Skip to main content
Glama

MCP Server Box

MIT License
82
  • Apple
  • Linux
config.py753 B
"""Configuration for the Box MCP Server.""" from dataclasses import dataclass from enum import Enum class TransportType(str, Enum): """Available transport types for the MCP server.""" STDIO = "stdio" SSE = "sse" STREAMABLE_HTTP = "streamable-http" class AuthType(str, Enum): """Available authentication types for Box API.""" OAUTH = "oauth" CCG = "ccg" @dataclass(frozen=True) class ServerConfig: """Default configuration values for the MCP server.""" transport: str = TransportType.STDIO.value host: str = "0.0.0.0" port: int = 8001 box_auth: str = AuthType.OAUTH.value require_auth: bool = True server_name_prefix: str = "Box Community MCP" # Global instance CONFIG = ServerConfig()

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/box-community/mcp-server-box'

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