We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jayozer/outscraper-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•346 B
"""
Outscraper MCP Server
This package provides tools for accessing Outscraper's Google Maps data extraction services.
It includes tools for searching Google Maps places and extracting reviews.
"""
from .server import mcp
__version__ = "1.0.0"
__all__ = ["mcp", "main"]
def main():
"""Main entry point for the MCP server"""
mcp.run()