Skip to main content
Glama
limouren01

MCP File Management Framework

by limouren01
cli_config.py725 B
#config/cli_config.py import argparse def load_cli_config(): parser = argparse.ArgumentParser(description="Override config via command line.") parser.add_argument("--db_host", help="Database host") parser.add_argument("--db_user", help="Database user") parser.add_argument("--db_password", help="Database password") parser.add_argument("--db_name", help="Database name") parser.add_argument("--db_port", type=int, help="Database port") parser.add_argument("--mcp_allowwrite", help="MCP allow write flag") parser.add_argument("--mcp_rootdir", help="MCP root directory") args = parser.parse_args() return {k.upper(): v for k, v in vars(args).items() if v is not None}

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/limouren01/mcp-framework'

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