Skip to main content
Glama
params.pyβ€’927 B
from typing import Annotated, Literal from pydantic import Field URL = Annotated[ str, Field(description="The URL of the website to be scraped.") ] RENDER = Annotated[ str, Field( description="Proxy configuration selector (Unlocker for unlocker, other values for regular proxy)", ), ] OUTPUT_FORMAT = Annotated[ # Define an Annotated type named OUTPUT_FORMAT Literal[ # Its base type is Literal "", # Allow empty string "links", # Allow "links" "Markdown", # Allow "Markdown" "html", # Allow "html" ], Field( # And add a Field description=""" # Describes the output format. Output format: - links - When you need links or navigation from the page. - Markdown - When you need the page in readable MarkDown format. - html - When you need the page in pure HTML format. """ ), ]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/xja1023789-collab/ScraperMcp_el'

If you have feedback or need assistance with the MCP directory API, please join our Discord server