We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/quality-network/finedata-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•334 B
"""
FineData MCP Server
MCP (Model Context Protocol) server for FineData web scraping API.
Allows AI agents (Claude, Cursor, GPT) to scrape websites with antibot bypass,
JS rendering, captcha solving, and proxy rotation.
"""
__version__ = "0.1.5"
__author__ = "FineData"
from .server import main
__all__ = ["main", "__version__"]