We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/OxSci-AI/oxsci-mcp-scaffold'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
config.py•364 B
"""
MCP Server Configuration
Inherits from oxsci_shared_core.config.BaseConfig for standard configuration management.
Add MCP-server-specific configurations here.
"""
from oxsci_shared_core.config import BaseConfig
class Config(BaseConfig):
def __init__(self, **kwargs):
super().__init__(**kwargs)
SERVICE_PORT: int = 8060
config = Config()