We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hiohio2/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
config.py•608 B
# Configuration for MCP Server and its tools
# Example configuration for the 'example_tool'
# In a real application, you might fetch these from environment variables or a more secure config store.
EXAMPLE_TOOL_CONFIG = {
"BASE_URL": "https://jsonplaceholder.typicode.com"
}
# Add configurations for other tools here
# e.g., ANOTHER_TOOL_CONFIG = { ... }
# General server settings (if any)
# SERVER_SETTINGS = {
# "DEFAULT_PORT": 5001
# }
# You can import these configurations into your tool files like so:
# from config import EXAMPLE_TOOL_CONFIG
# api_base_url = EXAMPLE_TOOL_CONFIG["BASE_URL"]