We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gaiaaiagent/regen-python-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•394 B
"""Scrapers for external methodology documents.
This module provides scrapers for extracting methodology information
from the Regen Registry and other external sources.
"""
from .registry_scraper import (
RegistryScraper,
scrape_aei_methodology,
scrape_ecometric_methodology
)
__all__ = [
"RegistryScraper",
"scrape_aei_methodology",
"scrape_ecometric_methodology"
]