We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Samuelr2112/mcp-project'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
configobjwalker.py•378 B
from __future__ import annotations
import warnings
from ruamel.yaml.util import configobj_walker as new_configobj_walker
if False: # MYPY
from typing import Any
def configobj_walker(cfg: Any) -> Any:
warnings.warn(
'configobj_walker has moved to ruamel.yaml.util, please update your code',
stacklevel=2,
)
return new_configobj_walker(cfg)