We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dylan-gluck/freecrawl-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•415 B
"""
FreeCrawl MCP Server - Self-hosted web scraping and document processing
A production-ready MCP server that provides web scraping, document processing,
and structured data extraction capabilities as a Firecrawl replacement.
"""
__version__ = "0.1.2"
__author__ = "Dylan Gluck"
__email__ = "dylan@dylangluck.com"
from .server import FreeCrawlServer, ServerConfig
__all__ = ["FreeCrawlServer", "ServerConfig"]