We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sirius-cc-wu/mcp-md-notes'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
config.py•306 B
from pydantic import Field
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
notes_dir: str = Field(
default="notes",
description="The directory where the notes are stored. This can be set using the NOTES_DIR environment variable.",
)
settings = Settings()